Reply To: reaction time results appear in different two columns

PennController for IBEX Forums Support reaction time results appear in different two columns Reply To: reaction time results appear in different two columns

#6262
Jeremy
Keymaster

Hi,

The argument of names should be a data frame that contains the content of your results file, which you load with read.csv. In the code from my message above, I use a data frame named dashed_results, a copy of all_results in which I stored the output of read.csv; the argument of read.csv should be the name of your results file, so for example if your file is named results222 (double-check whether your file has an extension) then you need to replace "results.csv" with "results222" in read.csv. Then you want to adapt the vector of names to the columns from your own results file—you can use length(all_results) to see how many columns have the longest lines from your results file

Jeremy