Skip to content

Commit bfe0f53

Browse files
Update README.md
Changed CSV.File to CSV.read
1 parent dc8b023 commit bfe0f53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ using DataFrames
104104
query = get_nass("source_desc=SURVEY","commodity_desc=ORANGES","state_alpha=CA", "year=2019","statisticcat_desc=AREA%20BEARING","statisticcat_desc=PRICE%20RECEIVED"; format="csv")
105105
106106
# Display as DataFrame
107-
CSV.File(query.body, DataFrame)
107+
CSV.read(query.body, DataFrame)
108108
109109
# Or save it to disk
110110
CSV.write("query.csv", CSV.File(query.body))

0 commit comments

Comments
 (0)