robdmc / pandashells

:panda_face: Bringing the python data stack to the shell prompt
Other
788 stars 26 forks source link

Not working on windows #42

Closed selepo closed 8 years ago

selepo commented 8 years ago

type churn.csv | p.df df.head() => "State","Account Length","Area Code","Phone","Intl Plan","VMail Plan","VMail Message","Day Mins","Day Calls","Day Charge","Eve Mins","Eve Calls","Eve Charge","Night Mins","Night Calls","Night Charge","Intl Mins","Intl Calls","Intl Charge","CustServ Calls","Churn?" "KS",128,415,"382-4657","no","yes",25,265.1,110,45.07,197.4,99,16.78,244.7,91,11.01,10.0,3,2.7,1,"False." "OH",107,415,"371-7191","no","yes",26,161.6,123,27.47,195.5,103,16.62,254.4,103,11.45,13.7,3,3.7,1,"False." "NJ",137,415,"358-1921","no","no",0,243.4,114,41.38,121.2,110,10.3,162.6,104,7.32,12.2,5,3.29,0,"False." "OH",84,408,"375-9999","yes","no",0,299.4,71,50.9,61.9,88,5.26,196.9,89,8.86,6.6,7,1.78,2,"False." "OK",75,415,"330-6626","yes","no",0,166.7,113,28.34,148.3,122,12.61,186.9,121,8.41,10.1,3,2.73,3,"False."

type churn.csv | p.df 'df.head' => Result of command: 'df = 'df.head()'' could not be cast to dataframe

This makes it hard to use other more complicated commands, most of the other test cases from readme file does not work for the same reason. Would it be hard to add support for windows ?