Skip to content

Commit 66ed10d

Browse files
committed
Merge pull request #6 from kozo2/patch-1
retrieve music_data.tsv with open-uri
2 parents b30e9e0 + 7c8aa8d commit 66ed10d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Data Analysis/Finding and plotting the most heard artists on last fm.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@
115115
}
116116
],
117117
"source": [
118-
"df = Daru::DataFrame.from_csv '/home/sameer/gitrepos/daru/spec/fixtures/music_data.tsv', col_sep: \"\\t\""
118+
"require 'open-uri'\n",
119+
"content = open('https://raw.githubusercontent.com/v0dro/daru/master/spec/fixtures/music_data.tsv')\n",
120+
"df = Daru::DataFrame.from_csv content, col_sep: \"\\t\""
119121
]
120122
},
121123
{

0 commit comments

Comments
 (0)