Description Usage Arguments Value See Also Examples
View source: R/preprocessing.R
If the Z-score of a sample for the selected column corresponds with a p-value less than 0.05, then the sample is considered an outlier and removed.
1 | ZScoreChallengeOutliers(inputted.data, column.to.perform.outlier.analysis)
|
inputted.data |
A dataframe |
column.to.perform.outlier.analysis |
Name of column in dataframe to evaluate for outliers. The column should contain continuous data. |
A dataframe with outlier rows removed.
Other Preprocessing functions:
AddColBinnedToBinary()
,
AddColBinnedToQuartiles()
,
AddPCsToEnd()
,
ConvertDataToPercentiles()
,
CorAssoTestMultipleWithErrorHandling()
,
DownSampleDataframe()
,
GenerateElbowPlotPCA()
,
GeneratePC1andPC2PlotsWithAndWithoutOutliers()
,
Log2TargetDensityPlotComparison()
,
LookAtPCFeatureLoadings()
,
MultipleColumnsNormalCheckThenBoxCox()
,
NormalCheckThenBoxCoxTransform()
,
RanomlySelectOneRowForEach()
,
RecodeIdentifier()
,
RemoveColWithAllZeros()
,
RemoveRowsBasedOnCol()
,
RemoveSamplesWithInstability()
,
SplitIntoTrainTest()
,
StabilityTestingAcrossVisits()
,
SubsetDataByContinuousCol()
,
TwoSampleTTest()
,
captureSessionInfo()
,
correlation.association.test()
,
describeNumericalColumnsWithLevels()
,
describeNumericalColumns()
,
generate.descriptive.plots.save.pdf()
,
generate.descriptive.plots()
1 2 3 4 5 6 7 | identifier.col <- c("a", "a", "a", "b", "b", "b", "c")
value.col <- c(1, 2, 3, 1, 1, 1, 100)
input.data.frame <- as.data.frame(cbind(identifier.col, value.col))
results <- ZScoreChallengeOutliers(input.data.frame, "value.col")
results
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.