Gastron,

try using read_csv instead of read.csv?

data = read_csv('csvfiles/train.csv')

this syntax works for me.

Margaret

On Wednesday, March 19, 2014 8:50:15 AM UTC-5, Gaston wrote:
>
> I am statistician and new in web2py.
> I tried to build an application that allows users to:
>
>    - upload a csv file in the database (my file)
>    - and click a link where some automated analyses have been attached 
>    using the python module pandas with (import pandas as pd)
>
>
> In the db.py, I have
> db.define_table('mytable',Field('myfile','upload'))
>
>
> In the default.py I have the below lines
> def stat():
>    data=pd.read.csv('myfile')
>
>
> I received the following error:
>
> <type 'exceptions.AttributeError'>('module' object has no attribute 'read')
>
> Great if someone could help. Thanks. Gaston
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to