SubhamChowdhuryRiju commited on
Commit
f2d3fd1
1 Parent(s): 5a28264
Files changed (1) hide show
  1. app.py +0 -4
app.py CHANGED
@@ -20,10 +20,6 @@ tips.head()
20
 
21
  tips.isna().sum()
22
 
23
- tip_df = tips[['total_bill', 'tips']]
24
-
25
- type(tip_df)
26
-
27
  X=tips[['total_bill']] # independent variable
28
  y=tips["tip"] # dependent variable/target variable
29
 
 
20
 
21
  tips.isna().sum()
22
 
 
 
 
 
23
  X=tips[['total_bill']] # independent variable
24
  y=tips["tip"] # dependent variable/target variable
25