bearings | R Documentation |
These data are the results of the extraction process from the vibrational data of healthy and faulty bearings. Different faults are considered: faultless (1), defect on outer race (2), defect on inner race (3) and defect on ball (4). The extracted features are: root mean square (RMS), square root of the amplitude (SRA), kurtosis value (KV), skewness value (SV), peak to peak value (PPV), crest factor (CF), impulse factor (IF), margin factor (MF), shape factor (SF), kurtosis factor (KF), frequency centre (FC), root mean square frequency (RMSF) and root variance frequency (RVF).
data(bearings)
bearings
is a data frame with 1906 cases (rows) and 14 variables (columns) named:
RMS
continuous.
SRA
continuous.
KV
continuous.
SV
continuous.
PPV
continuous.
CF
continuous.
IF
continuous.
MF
continuous.
SF
continuous.
KF
continuous.
FC
continuous.
RMSF
continuous.
RVF
continuous.
Class
discrete 1
, 2
, 3
or 4
.
Case Western Reserve University Bearing Data Center Website https://engineering.case.edu/bearingdatacenter/welcome.
B. Panic, J. Klemenc and M. Nagode. Gaussian mixture model based classification revisited: Application to the bearing fault classification. Journal of Mechanical Engineering, 66(4):215-226, 2020. \Sexpr[results=rd]{tools:::Rd_expr_doi("http://dx.doi.org/10.5545/sv-jme.2020.6563")}.
## Not run:
data(bearings)
# Split dataset into train (75
set.seed(3)
Bearings <- split(p = 0.75, Dataset = bearings, class = 14)
# Estimate number of components, component weights and component
# parameters for train subsets.
bearingsest <- REBMIX(model = "REBMVNORM",
Dataset = a.train(Bearings),
Preprocessing = "histogram",
cmax = 15,
Criterion = "BIC")
# Classification.
bearingscla <- RCLSMIX(model = "RCLSMVNORM",
x = list(bearingsest),
Dataset = a.test(Bearings),
Zt = a.Zt(Bearings))
bearingscla
summary(bearingscla)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.