Displaying 1 result from an estimated 1 matches for "700x17".
Did you mean:
70017
2006 Jun 23
1
looping through a data frame
Hi- I am having trouble with the syntax of looping through the rows
and columns of a data frame.
I have a table with 17 observations for 84 lines at n=5-10 per line. So
the table is ~700x17.
I want to pull out the median and stdev for each line and put it in a
dataframe with rowname = linename.
So I have tried the following....
#read in the table
input.table <- read.table(file = "First_run_all.txt", header = T)
#pull out the line names
line.run <- unique(input.tabl...