fillData {ACCLMA} | R Documentation |
This function opens a manual data entry window, saves it as a data set and then sorts it by the X values (the first column)
fillData()
A sorted by X data set
Tal Carmi, Liat Gaziel
#mydata<-fillData() ## The function is currently defined as function () { mydata <- data.frame(X = numeric(0), Y = numeric(0), Weight = numeric(0)) mydata <- edit(mydata) mydata <- mydata[order(mydata[1]), ] return(mydata) }