Skip to content
Snippets Groups Projects
Commit c4765145 authored by Fernando Mayer's avatar Fernando Mayer
Browse files

fix function name in .R file

parent 4b7a1790
No related branches found
No related tags found
No related merge requests found
# Generated by roxygen2 (4.1.1): do not edit by hand
export(poly.gui)
export(polyGui)
export(subsetDropAll)
export(twoStripCombined)
import(gWidgets)
......
......@@ -24,12 +24,12 @@
#' @examples
#' \donttest{
#'
#' poly.gui(x=area, y=peri, data=rock, er=0.3)
#' poly.gui(x=speed, y=dist, data=cars, er=0.3)
#' poly.gui(x=eruptions, y=waiting, data=faithful, er=0.3)
#' polyGui(x=area, y=peri, data=rock, er=0.3)
#' polyGui(x=speed, y=dist, data=cars, er=0.3)
#' polyGui(x=eruptions, y=waiting, data=faithful, er=0.3)
#'
#' }
poly.gui <- function(x, y, data, er=0.05){
polyGui <- function(x, y, data, er=0.05){
##
##-------------------------------------------
## Loading the required packages.
......
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/polyGui.R
\name{polyGui}
\alias{poly.gui}
\alias{polyGui}
\title{Polynomial regression GUI}
\usage{
poly.gui(x, y, data, er = 0.05)
polyGui(x, y, data, er = 0.05)
}
\arguments{
\item{x,y}{independent and dependent (numeric) regression variables.}
......@@ -29,9 +28,9 @@ that \code{gWidgets} and \code{gWidgetstcltk} packages are available.
\examples{
\donttest{
poly.gui(x=area, y=peri, data=rock, er=0.3)
poly.gui(x=speed, y=dist, data=cars, er=0.3)
poly.gui(x=eruptions, y=waiting, data=faithful, er=0.3)
polyGui(x=area, y=peri, data=rock, er=0.3)
polyGui(x=speed, y=dist, data=cars, er=0.3)
polyGui(x=eruptions, y=waiting, data=faithful, er=0.3)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment