Re: [R] Maximum Number of Rows in a Dataframe

2010-12-03 Thread Rushabh Mehta
for(i in 1:lengthBD) { bdid1 = basicdata[i,] bdid = as.character(bdid1) dq = paste("'",bdid,"'",sep = "") dataquery = paste("select *","From Main_Data AS m JOIN Basic_Data AS b ON m.BD_ID = b.BD_ID JOIN Point_System_Name AS p ON b.psn_id = p.psn_id JOIN Trend_Location as tl ON b.tl_id = tl.tl_i

Re: [R] Maximum Number of Rows in a Dataframe

2010-12-03 Thread Michael Bedward
Hello, Please post a sample of your code so people here can understand what you are trying to do. Michael On 4 December 2010 11:00, rushabhbm wrote: > > Guys, > I am new to R so please excuse if I am not very clear. > > My problem is: I have a 'for' loop in which I am defining a Dataframe df >

[R] Maximum Number of Rows in a Dataframe

2010-12-03 Thread rushabhbm
Guys, I am new to R so please excuse if I am not very clear. My problem is: I have a 'for' loop in which I am defining a Dataframe df with a SQL query. First iteration gives a df with 31 rows(that's correct), however next iterations also gives me max rows as 31. It's kinda stuck at that value. I