Displaying 1 result from an estimated 1 matches for "ptgevent".
Did you mean:
prevent
2003 May 08
1
strange behaviour of certain fields in data frame after rbind
...d
T2sbdata). After each loop I would like to append that dataframe to the
results I obtained from the previous loops (called T2sbdataALL) and use
for that purpose rbind.
Below a part of the loop and the result I get. The rbind command does it
job as I would expect, but cannot append the column PTGEvent properly.
I use R Version 1.6.2 under Linux.
Thanks
Joris
print("how original data look like")
print(T2sbdataALL[1:8])
print("how data to be appended look like")
print(T2sbdata[1:8])
T2sbdataALL <- rbind(T2sbdataALL,T2sbdata)
print("How all data look after rbind"...