+ 1
How to use pandas in pydroid?
I need help to use pandas in pydroid IDE for data analysing. I've installed pydroid in my android and then installed pandas library. Then i've run this code: import numpy as np import pandas as pd import os p = os.getcwd() print(p) p = p + "/Salaries.csv" print(p) df = pd.read_csv(p) df.head(5) . Here df.head() is not working.
2 ответов
+ 6
check Keith Galli's youtube channel
0
Thanks for your reply.