Hello Guys, With psycopg2, i get result of query in this form :
[(15002325, 24, 20, 1393, -67333094L, 38, 4, 493.48763257822799, 493.63348372593703), (15002339, 76, 20, 1393, -67333094L, 91, 3, 499.95845909922201, 499.970048093743), (15002431, 24, 20, 1394, -67333094L, 38, 4, 493.493464900383, 493.63348372593703), (15002483, 76, 20, 1394, -67333094L, 91, 3, 499.959042442434, 499.97304310494502)]
I'm trying to convert this nested tuple/list into R dataframe with RPY2 : with nine column with name, and four row of data (number of element in this nested list ))
But i don't understand how, i'm trying with taggedList (into RPY2 container library) but with no success .. It seems tagged list take one list by one list only.
Thx for help !