Learn R Programming

Kurt (version 1.1)

ExtKur: ExtKur: kurtosis based projection pursuit

Description

Returns a data projection with either maximal or minimal kurtosis.

Usage

ExtKur(data, iterations, maxmin)

Arguments

data

data matrix

iterations

number of required iterations

maxmin

is the choice to either maximise ("MAX") or minimise ("MIN") kurtosis

Value

linear

vector of coefficients

projection

vector of projected data

kurt

extreme kurtosis attainable by a data projection

%% ~Describe the value returned %% If it is a LIST, use %% \item{comp1 }{Description of 'comp1'} %% \item{comp2 }{Description of 'comp2'} %% ...

Examples

Run this code
# NOT RUN {
data(iris)
iris<-data.matrix(iris)#returns the matrix obtained by converting the data frame to numeric mode
ExtKur(iris[,1:4],10,"MAX") #returns a data projection with maximal kurtosis
# }

Run the code above in your browser using DataLab