fillData {ACCLMA}R Documentation

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()

Value

A sorted by X data set

Author(s)

Tal Carmi, Liat Gaziel

Examples

#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)
  }

[Package ACCLMA version 1.0 Index]