This is the code I am using while having my data copied,
control<-read.table( pipe("pbpaste"),header=FALSE)
control
however, this is the data it keeps outputting,
> control
control X30
1 control 36
2 control 66
3 control 21
4 control 63
5 control 38
6 control 35
7 control 45
The correct data is
control 30
control 36
control 66
control 21
control 63
control 38
control 35
control 45
How do I get it to stop adding the X and consider the first row a data point?