FahadAlam commited on
Commit
e42834f
·
1 Parent(s): e7c616e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,9 +6,9 @@ import matplotlib.pyplot as plt
6
 
7
  def findCorrelation(dataset, target):
8
 
9
- print(dataset)
10
 
11
- df = pd.read_csv(dataset)
12
 
13
  df["target"] = target
14
 
 
6
 
7
  def findCorrelation(dataset, target):
8
 
9
+ print(dataset.name)
10
 
11
+ df = pd.read_csv(dataset.name)
12
 
13
  df["target"] = target
14