Skip to content

Commit a45ace2

Browse files
authored
read_csv update (#82)
* read_csv update * Update README.md
1 parent 213de6d commit a45ace2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

NoodlePug/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ docker-compose up -d
4343
Navigate to [http://localhost:10000/ide/](http://localhost:10000/ide/), then use the script below to open some tables in the Deephaven IDE.
4444

4545
```python
46-
from deephaven.TableTools import readCsv
46+
from deephaven.TableTools import read_csv
4747

48-
noodle_pug = readCsv("https://media.githubusercontent.com/media/deephaven/examples/4f15c29972ae216b5bd8077b5e3dc57351eccb27/NoodlePug/noodle_pug.csv")
48+
noodle_pug = read_csv("https://media.githubusercontent.com/media/deephaven/examples/4f15c29972ae216b5bd8077b5e3dc57351eccb27/NoodlePug/noodle_pug.csv")
4949

5050
number_bones = noodle_pug.dropColumns("Date", "Day_of_Week", "Weather_NYC").sumBy()
5151

@@ -56,7 +56,7 @@ number_per_weather = noodle_pug.dropColumns("Date", "Day_of_Week").sumBy("Weathe
5656

5757

5858
```groovy
59-
noodle_pug = readCsv("https://media.githubusercontent.com/media/deephaven/examples/4f15c29972ae216b5bd8077b5e3dc57351eccb27/NoodlePug/noodle_pug.csv")
59+
noodle_pug = read_csv("https://media.githubusercontent.com/media/deephaven/examples/4f15c29972ae216b5bd8077b5e3dc57351eccb27/NoodlePug/noodle_pug.csv")
6060
6161
number_bones = noodle_pug.dropColumns("Date", "Day_of_Week", "Weather_NYC").sumBy()
6262

0 commit comments

Comments
 (0)