Learn R Programming

ACCLMA (version 1.0)

fillData: Opens a window for manual entry of X,Y,weight data set

Description

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)

Usage

fillData()

Arguments

Value

Details

References

See Also

Examples

Run this code
#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)
  }

Run the code above in your browser using DataLab