File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ docker-compose up -d
4343Navigate 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
5050number_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
6161number_bones = noodle_pug.dropColumns("Date", "Day_of_Week", "Weather_NYC").sumBy()
6262
You can’t perform that action at this time.
0 commit comments