Sorry, I am new to Python. I am looking for some general guidance. Here is my problem.
I have a process that produces observations on five variables. For each iteration through the process, I would like the five variables to be added to a dataframe. That is, each row of the dataframe is a set of related observations on the five variables. If I iterate through the process 1,000 times, I will have 1,000 observations on each of the five variables.
I know how to initialize the the empty dataframe, but how do I go about adding new rows of data? This seems like it should be easy, but I am just not sure.
Thanks,