+ 1
ML TASK1
hello, I am a beginner in Machine learning I find it difficult to solve my project 1 task can anyone guide me
5 odpowiedzi
+ 3
Hey there divya 123,
Please add your attempt so that the community can help you more easily :)
+ 3
Have you done the Python Core and Intermediate tutorials yet?
+ 2
Sometimes it's good to get a grasp of the basics before starting ML.
+ 1
import pandas as pd
one.csv={('a',1,2),
('b',3,4)}
df=pd.read_csv(one.csv)
arr=df['a'].values
print(arr[:0])
please correct me if I am wrong at any point(ML exercise 1)
0
You just need to print(arr) no need for slicing.