Skip to content

Commit

Permalink
Fix filepath in example notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
agitter committed Jan 25, 2020
1 parent 98baf44 commit 154d9fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions illustration.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@
}
],
"source": [
"# Plot the confusion matri for the test set\n",
"# Plot the confusion matrix for the test set\n",
"plt.matshow(cm, interpolation='nearest', cmap=plt.cm.Blues, alpha=0.5)\n",
"plt.xticks(np.arange(2), ('+', '-'))\n",
"plt.yticks(np.arange(2), ('+', '-'))\n",
Expand Down Expand Up @@ -1256,7 +1256,7 @@
],
"source": [
"# Enter unlabeled data for prediction\n",
"newdata = pd.read_csv(\"~/Desktop/ml4bio/data/telomere_ALT/telomere_new.csv\", sep='\\t')\n",
"newdata = pd.read_csv(\"data/telomere_ALT/telomere_new.csv\", sep='\\t')\n",
"newdata.head(6)"
]
},
Expand Down

0 comments on commit 154d9fa

Please sign in to comment.