Skip to content

Commit

Permalink
Update lda.py
Browse files Browse the repository at this point in the history
  • Loading branch information
eaglewarrior authored Oct 4, 2018
1 parent 705435a commit e192b2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lda.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pandas as pd

# Importing the dataset
dataset = pd.read_csv('/home/fractaluser/Desktop/LDA/LDA/Wine.csv')
dataset = pd.read_csv('.../LDA/LDA/Wine.csv')
X = dataset.iloc[:, 0:13].values
y = dataset.iloc[:, 13].values

Expand Down Expand Up @@ -71,4 +71,4 @@
plt.xlabel('LD1')
plt.ylabel('LD2')
plt.legend()
plt.show()
plt.show()

0 comments on commit e192b2e

Please sign in to comment.