From 87c976e74d8dc812e7ce46a2268039b1da7c4820 Mon Sep 17 00:00:00 2001 From: Matt Hall Date: Tue, 15 Feb 2022 10:48:17 -0400 Subject: [PATCH] not an array --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d823cfc2..683374a1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ from welly import Well, Project w = Well.from_las('my_wells/my_well.las') # Load a single well. p = Project.from_las('my_wells/*.las') # Load lots of wells. -gr = w.data['GR'] # One log; this is a subclassed NumPy array... +gr = w.data['GR'] # One log... gr.plot() # ...with some superpowers! ```