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

Description Usage Value Author(s) Examples

View source: R/lmafunctions.r

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

1

Value

A sorted by X data set

Author(s)

Tal Carmi, Liat Gaziel

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#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)
  }

ACCLMA documentation built on May 2, 2019, 8:49 a.m.