R package that classifies using probabilistic neural networks and evaluate the results.
It is responsible for standardizing a set of data.
⋅⋅⋅ standardized set.
library(apnnClassifier)
data(testData)
Basic usage
testData <- standardize(testData)
For classification by minimum and maximum
testData <- standardize(testData, type = "scale")
View(testData)
It is responsible for executing the prediction of the probabilistic neural network.
⋅⋅⋅ pnn trained with the classified testing set and network performance statistics.
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)
Responsible of analyze the classification of the probabilistic neural network and generating the corresponding analysis graphs.
⋅⋅⋅ pnn with evaluated input and analysis charts.
library(apnnClassifier)
data(trainData, testData)
pnn <- trainNeuralNet(train_set = trainData, test_set = testData, sigma = 0.5)
pnn <- evaluate(pnn)
View(pnn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.