README.md

R package - apnnClassifier

R package that classifies using probabilistic neural networks and evaluate the results.

Functions

1. standardize

It is responsible for standardizing a set of data.

Params

Return

⋅⋅⋅ standardized set.

Example

library(apnnClassifier)
data(testData)
Basic usage
testData <- standardize(testData)
For classification by minimum and maximum
testData <- standardize(testData, type = "scale")
View(testData)

2. trainNeuralNet

It is responsible for executing the prediction of the probabilistic neural network.

Params

Return

⋅⋅⋅ pnn trained with the classified testing set and network performance statistics.

Example

library(apnnClassifier)
data(trainData, testData)
# Basic usage.
pnn <- trainNeuralNet(train_set = trainData, test_set = testData)
# If you know the approximate optimal value and the sorter column is not in the first position of the set.
pnn <- trainNeuralNet(train_set = trainData, test_set = testData, category_column =  *sorter column*, sigma = *sigma value*)
View(pnn)

3. evaluate

Responsible of analyze the classification of the probabilistic neural network and generating the corresponding analysis graphs.

Params

Return

⋅⋅⋅ pnn with evaluated input and analysis charts.

Example

library(apnnClassifier)
data(trainData, testData)
pnn <- trainNeuralNet(train_set = trainData, test_set = testData, sigma = 0.5)
pnn <- evaluate(pnn)
View(pnn)


ghouljd/apnnClassifier documentation built on June 29, 2019, 11:38 p.m.