Learn R Programming

Buddle (version 2.0.1)

A Deep Learning for Statistical Classification and Regression Analysis with Random Effects

Description

Statistical classification and regression have been popular among various fields and stayed in the limelight of scientists of those fields. Examples of the fields include clinical trials where the statistical classification of patients is indispensable to predict the clinical courses of diseases. Considering the negative impact of diseases on performing daily tasks, correctly classifying patients based on the clinical information is vital in that we need to identify patients of the high-risk group to develop a severe state and arrange medical treatment for them at an opportune moment. Deep learning - a part of artificial intelligence - has gained much attention, and research on it burgeons during past decades: see, e.g, Kazemi and Mirroshandel (2018) . It is a veritable technique which was originally designed for the classification, and hence, the Buddle package can provide sublime solutions to various challenging classification and regression problems encountered in the clinical trials. The Buddle package is based on the back-propagation algorithm - together with various powerful techniques such as batch normalization and dropout - which performs a multi-layer feed-forward neural network: see Krizhevsky et. al (2017) , Schmidhuber (2015) and LeCun et al. (1998) for more details. This package contains two main functions: TrainBuddle() and FetchBuddle(). TrainBuddle() builds a feed-forward neural network model and trains the model. FetchBuddle() recalls the trained model which is the output of TrainBuddle(), classifies or regresses given data, and make a final prediction for the data.

Copy Link

Version

Install

install.packages('Buddle')

Monthly Downloads

292

Version

2.0.1

License

GPL-2

Maintainer

Jiwoong Kim

Last Published

February 13th, 2020

Functions in Buddle (2.0.1)

CheckNonNumeric

Detecting Non-numeric Values.
FetchBuddle

Predicting Classification and Regression.
OneHot2Label

Obtaining Labels
GetPrecision

Obtaining Accuracy.
Split2TrainTest

Splitting Data into Training and Test Sets.
MakeConfusionMatrix

Making a Confusion Matrix.
TrainBuddle

Implementing Statistical Classification and Regression.
mnist_data

Image data of handwritten digits.