iClick.lm {iClick}R Documentation

iClick GUI for linear model

Description

This GUI estimates ARIMA both with automatic lag selection and fixed lag length. The GUI is only only a GUI, but also a output format.

Usage

iClick.lm(dep,indep,data,Formula=NULL,bootrep=99)

Arguments

data

A R data object for lm()

dep

scalar, the number of column as dependent variable

indep

scalar, the numbers of column as independent variables

Formula

A formula for lm, default is NULL, if specified, dep and indep should leave empty. See example below

bootrep

Bootstrap replications, default is 99

Details

This GUI fits equaiton into lm regression.

Value

Fitted lm regression output.

Author(s)

Ho Tsung-wu <tsungwu@ntnu.edu.tw>, College of Management, National Taiwan Normal University

See Also

lm()

Examples

data("FFplusMOM")
iClick.lm(dep=2,indep=c(3,5:6),data=FFplusMOM, bootrep=9)

#Eq=RET~(MK_BETA+HML_BETA+SMB_BETA)^2
#iClick.lm(Formula=Eq,data=FFplusMOM, bootrep=9)

[Package iClick version 1.5 Index]