Last updated: 2024-09-10
Checks: 7 0
Knit directory: My_Project/
This reproducible R Markdown analysis was created with workflowr (version 1.7.1). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.
The command set.seed(20240905)
was run prior to running
the code in the R Markdown file. Setting a seed ensures that any results
that rely on randomness, e.g. subsampling or permutations, are
reproducible.
Great job! Recording the operating system, R version, and package versions is critical for reproducibility.
Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.
Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.
Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.
The results in this page were generated with repository version 166be7f. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.
Note that you need to be careful to ensure that all relevant files for
the analysis have been committed to Git prior to generating the results
(you can use wflow_publish
or
wflow_git_commit
). workflowr only checks the R Markdown
file, but you know if there are other scripts or data files that it
depends on. Below is the status of the Git repository when the results
were generated:
Ignored files:
Ignored: .Rhistory
Ignored: .Rproj.user/
Untracked files:
Untracked: .Rapp.history
Untracked: .gitignore
Untracked: Stats.Rmd
Untracked: Stats.html
Untracked: data/.DS_Store
Untracked: data/COADREAD.clin.merged.picked.txt
Untracked: data/COADREAD.rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes_normalized__data.data.txt
Unstaged changes:
Modified: .DS_Store
Modified: analysis/.DS_Store
Deleted: myproject.zip
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
These are the previous versions of the repository in which changes were
made to the R Markdown (analysis/Module_PP.Rmd
) and HTML
(docs/Module_PP.html
) files. If you’ve configured a remote
Git repository (see ?wflow_git_remote
), click on the
hyperlinks in the table below to view the files as they were in that
past version.
File | Version | Author | Date | Message |
---|---|---|---|---|
html | c3ff74c | oliverdesousa | 2024-09-10 | Build site. |
Rmd | 5e763e5 | oliverdesousa | 2024-09-10 | Start my new project |
Rmd | b77ee0a | oliverdesousa | 2024-09-06 | Files |
html | b77ee0a | oliverdesousa | 2024-09-06 | Files |
#install.packages("Hmisc")
library(Hmisc)
library(dplyr)
library(ggplot2)
data("airquality")
data("mtcars")
Firstly, in order to conduct your analysis you need to have your data.
The source of data depends on your research question and project requirements.
You need to ensure that the data you obtain is of high-quality and of relevance to your problem.
There are multiple methods for dealing with missing data.
If the missing values are random within your data set and don’t seem to follow a pattern (i.e., there seem to be certain columns with high missingness when compared with others), one could replace these missing values with the mean or median of the column.
In most cases, rows with high missingness could introduce bias. Therefore, it would be more accurate to remove these samples to avoid biasing your analysis.
# For the below we will be using the dataset: "airquality" as this data has missing values to remove.
# Check for missing values
missing_values <- sapply(airquality, function(x) sum(is.na(x)))
# Print the count of missing values in each column
print(missing_values)
Ozone Solar.R Wind Temp Month Day
37 7 0 0 0 0
# Create a copy of the dataset for cleaning
airquality_clean <- airquality
# Calculate the median for each column (ignoring NA values)
medians <- sapply(airquality_clean, function(x) median(x, na.rm = TRUE))
# Replace NA values with the corresponding column medians
for (col in names(airquality_clean)) {
airquality_clean[is.na(airquality_clean[[col]]), col] <- medians[col]
}
# Alternatively, remove rows with any missing values (if applicable)
airquality_clean_2 <- na.omit(airquality)
# Now we check for cleaned data missing values:
missing_values <- sapply(airquality_clean, function(x) sum(is.na(x)))
missing_values_2 <- sapply(airquality_clean_2, function(x) sum(is.na(x)))
cat("The number of missing values from 1st dataset:", sum(missing_values),
"and from the 2nd dataset:", sum(missing_values_2), "\n")
The number of missing values from 1st dataset: 0 and from the 2nd dataset: 0
Outliers in a dataset are values that deviate from the rest of your data and if included could skew your analysis and decrease the accuracy of your analysis.
One can identify outliers using z-score normalisation
to
calculate how many SD’s your value is from the mean (i.e., evaluates how
unsual a data point is).
# Calculate z-scores for each feature
z_scores <- scale(airquality_clean_2)
# Identify outliers using a z-score threshold (e.g., 3 standard deviations)
outlier_threshold <- 2
outliers <- apply(z_scores, 2, function(x) sum(abs(x) > outlier_threshold))
# Print the number of outliers in each column
print(outliers)
Ozone Solar.R Wind Temp Month Day
6 0 5 3 0 0
Once you have identified outliers you can either remove them or use a cut-off threshold to only exclude values above/below a certain score.
# Remove outliers based on the threshold
# Keep rows where all feature z-scores are within the threshold
airquality_no_outliers <- airquality_clean_2[apply(z_scores, 1, function(x) all(abs(x) <= outlier_threshold)), ]
# Recalculate z-scores for the dataset without outliers
z_scores_no_outliers <- scale(airquality_no_outliers)
# Identify remaining outliers
outliers_no_outliers <- apply(z_scores_no_outliers, 2, function(x) sum(abs(x) > outlier_threshold))
# Print the number of outliers in each column after removal
print(outliers_no_outliers)
Ozone Solar.R Wind Temp Month Day
5 0 2 3 0 0
Applying min-max normalization will define the values within a fixed range, commonly [0, 1].
Typically used when you want to ensure all features are within the same range for certain machine learning algorithms (like neural networks) which are sensitive to the magnitude of the input value.
data("mtcars")
# Min-max normalize the mpg variable
mtcars$mpg_mm <- scale(mtcars$mpg,
center = min(mtcars$mpg),
scale = max(mtcars$mpg) - min(mtcars$mpg))
# Now we can check what minimum and maximum of the normalized mpg variable is:
cat("The minimum of the normalized mpg variable is:", min(mtcars$mpg_mm),
"and the maximum is:", max(mtcars$mpg_mm), "\n")
The minimum of the normalized mpg variable is: 0 and the maximum is: 1
standardized
and re-scaled
in these
scenarios.Standardizes the data such that the mean of the values becomes 0 and the standard deviation becomes 1.
There is no fixed range after standardization and the values are rescaled relative to their SD
data("mtcars")
# Standardize the 'mpg' feature manually
mpg_standardized <- (mtcars$mpg - mean(mtcars$mpg)) / sd(mtcars$mpg)
# Alternatively, use the scale function to standardize multiple columns
data_standardized <- as.data.frame(scale(mtcars))
Standardized ‘mpg’ values:
Min. 1st Qu. Median Mean 3rd Qu. Max.
-1.6079 -0.7741 -0.1478 0.0000 0.4495 2.2913
Data reduction is a crucial step when working with high-dimensional data sets. Reducing the number of variables (features) or the size of your dataset helps reduce the risk of having an overfitting model in downstream analyses. These methods can improve the accuracy and performance of your model. By decreasing the size of your dataset one can also decrease the comutational burden.
Principal Component Analysis (PCA): PCA is a commonly used technique for dimensionality reduction. It transforms the data into a new coordinate system where the greatest variance lies on the first principal components.
Feature Selection: This involves selecting a subset of relevant features based on certain criteria such as correlation or variance.
Sampling: Instead of using the entire dataset, you can sample a representative portion of the data for training.
Aggregation: Aggregating data points into groups (e.g., by averaging or summing) to reduce the number of instances while retaining key characteristics.
# Standardize the dataset (scale to mean 0 and standard deviation 1)
mtcars_scaled <- as.data.frame(scale(mtcars))
# Perform PCA to reduce the dataset to two principal components
pca_result <- prcomp(mtcars_scaled, center = TRUE, scale. = TRUE)
# Get summary of PCA to show variance explained by each component
summary(pca_result)
Importance of components:
PC1 PC2 PC3 PC4 PC5 PC6 PC7
Standard deviation 2.5707 1.6280 0.79196 0.51923 0.47271 0.46000 0.3678
Proportion of Variance 0.6008 0.2409 0.05702 0.02451 0.02031 0.01924 0.0123
Cumulative Proportion 0.6008 0.8417 0.89873 0.92324 0.94356 0.96279 0.9751
PC8 PC9 PC10 PC11
Standard deviation 0.35057 0.2776 0.22811 0.1485
Proportion of Variance 0.01117 0.0070 0.00473 0.0020
Cumulative Proportion 0.98626 0.9933 0.99800 1.0000
# Create a biplot to visualize PCA (first two principal components)**** make better
biplot(pca_result, scale = 0)
Version | Author | Date |
---|---|---|
b77ee0a | oliverdesousa | 2024-09-06 |
mtcars
prior to feature selection:
str(mtcars)
'data.frame': 32 obs. of 11 variables:
$ mpg : num 21 21 22.8 21.4 18.7 18.1 14.3 24.4 22.8 19.2 ...
$ cyl : num 6 6 4 6 8 6 8 4 4 6 ...
$ disp: num 160 160 108 258 360 ...
$ hp : num 110 110 93 110 175 105 245 62 95 123 ...
$ drat: num 3.9 3.9 3.85 3.08 3.15 2.76 3.21 3.69 3.92 3.92 ...
$ wt : num 2.62 2.88 2.32 3.21 3.44 ...
$ qsec: num 16.5 17 18.6 19.4 17 ...
$ vs : num 0 0 1 1 0 1 0 1 1 1 ...
$ am : num 1 1 1 0 0 0 0 0 0 0 ...
$ gear: num 4 4 4 3 3 3 3 4 4 4 ...
$ carb: num 4 4 1 1 2 1 4 2 2 4 ...
# Step 1: Calculate the variance for each feature (column)
feature_variances <- apply(mtcars, 2, var)
# Step 2: Set a threshold for filtering low variance features (e.g., use the 25th percentile of the variance)
threshold <- quantile(feature_variances, 0.25)
# Step 3: Retain only the features with variance above the threshold
filtered_data <- mtcars[, feature_variances > threshold]
mtcars
after feature selection:
str(filtered_data)
'data.frame': 32 obs. of 8 variables:
$ mpg : num 21 21 22.8 21.4 18.7 18.1 14.3 24.4 22.8 19.2 ...
$ cyl : num 6 6 4 6 8 6 8 4 4 6 ...
$ disp: num 160 160 108 258 360 ...
$ hp : num 110 110 93 110 175 105 245 62 95 123 ...
$ wt : num 2.62 2.88 2.32 3.21 3.44 ...
$ qsec: num 16.5 17 18.6 19.4 17 ...
$ gear: num 4 4 4 3 3 3 3 4 4 4 ...
$ carb: num 4 4 1 1 2 1 4 2 2 4 ...
A T-test is used to determine if there is a significant difference between the means of two groups. It is typically used when comparing the means of two groups to see if they are statistically different from each other.
When to use?
When comparing the means of two independent groups (Independent T-test).
When comparing the means of two related groups or paired samples (Paired T-test).
# Example Data
method_A <- c(85, 88, 90, 92, 87)
method_B <- c(78, 82, 80, 85, 79)
# Perform T-test
t_test_result <- t.test(method_A, method_B)
# Print results
print(t_test_result)
Welch Two Sample t-test
data: method_A and method_B
t = 4.3879, df = 7.9943, p-value = 0.002328
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
3.605389 11.594611
sample estimates:
mean of x mean of y
88.4 80.8
Interpretation: p-value < 0.05
= there is a
significant difference between the paired samples.
ANOVA is used to determine if there are any statistically significant differences between the means of three or more independent groups.
When to use?
# Example Data
scores <- data.frame(
score = c(85, 88, 90, 92, 87, 78, 82, 80, 85, 79, 95, 97, 92, 91, 96),
method = factor(rep(c("A", "B", "C"), each = 5))
)
# Perform ANOVA
anova_result <- aov(score ~ method, data = scores)
# Print summary of results
summary(anova_result)
Df Sum Sq Mean Sq F value Pr(>F)
method 2 451.6 225.80 31.22 1.76e-05 ***
Residuals 12 86.8 7.23
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Interpretation: p-value < 0.05
= there is a
significant difference between the group means.
The Shapiro-Wilk test assesses whether a sample comes from a normally distributed population. It is particularly useful for checking the normality assumption in parametric tests like the T-test and ANOVA.
When to use?
When you need to check if your data is normally distributed before performing parametric tests.
To validate the assumptions of normality for statistical tests that assume data is normally distributed.
# Example Data
sample_data <- c(5.2, 6.1, 5.8, 7.2, 6.5, 5.9, 6.8, 6.0, 6.7, 5.7)
# Perform Shapiro-Wilk test
shapiro_test_result <- shapiro.test(sample_data)
# Print results
print(shapiro_test_result)
Shapiro-Wilk normality test
data: sample_data
W = 0.97508, p-value = 0.9335
Interpretation: The Shapiro-Wilk test returns a p-value that indicates whether the sample deviates from a normal distribution.
p-value > 0.05: Fail to reject the null hypothesis; data is not significantly different from a normal distribution.
p-value ≤ 0.05: Reject the null hypothesis; data significantly deviates from a normal distribution.
The Chi-squared test is used to determine if there is a significant association between two categorical variables.
When to use?
# Example Data
study_method <- matrix(c(20, 15, 30, 25), nrow = 2, byrow = TRUE)
rownames(study_method) <- c("Passed", "Failed")
colnames(study_method) <- c("Method A", "Method B")
# Perform Chi-squared test
chi_sq_result <- chisq.test(study_method)
# Print results
print(chi_sq_result)
Pearson's Chi-squared test with Yates' continuity correction
data: study_method
X-squared = 0.00058442, df = 1, p-value = 0.9807
Interpretation: p-value < 0.05
there is a
significant association between the study method and the passing
rate.
The Wilcoxon Signed-Rank Test is a non-parametric test used to compare two related samples or paired observations to determine if their population mean ranks differ.
When to use?
# Example Data
before <- c(5, 7, 8, 6, 9)
after <- c(6, 8, 7, 7, 10)
# Perform Wilcoxon Signed-Rank Test
wilcox_test_result <- wilcox.test(before, after, paired = TRUE)
Warning in wilcox.test.default(before, after, paired = TRUE): cannot compute
exact p-value with ties
# Print results
print(wilcox_test_result)
Wilcoxon signed rank test with continuity correction
data: before and after
V = 3, p-value = 0.233
alternative hypothesis: true location shift is not equal to 0
Interpretation: p-value < 0.05
= there is a
significant difference between the paired samples.
sessionInfo()
R version 4.4.1 (2024-06-14)
Platform: aarch64-apple-darwin20
Running under: macOS Sonoma 14.6.1
Matrix products: default
BLAS: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRblas.0.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRlapack.dylib; LAPACK version 3.12.0
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
time zone: Africa/Johannesburg
tzcode source: internal
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] ggplot2_3.5.1 dplyr_1.1.4 Hmisc_5.1-3
loaded via a namespace (and not attached):
[1] sass_0.4.9 utf8_1.2.4 generics_0.1.3 stringi_1.8.4
[5] digest_0.6.37 magrittr_2.0.3 evaluate_0.24.0 grid_4.4.1
[9] fastmap_1.2.0 rprojroot_2.0.4 workflowr_1.7.1 jsonlite_1.8.8
[13] whisker_0.4.1 backports_1.5.0 nnet_7.3-19 Formula_1.2-5
[17] gridExtra_2.3 promises_1.3.0 fansi_1.0.6 scales_1.3.0
[21] jquerylib_0.1.4 cli_3.6.3 rlang_1.1.4 munsell_0.5.1
[25] withr_3.0.1 base64enc_0.1-3 cachem_1.1.0 yaml_2.3.10
[29] tools_4.4.1 checkmate_2.3.2 htmlTable_2.4.3 colorspace_2.1-1
[33] httpuv_1.6.15 vctrs_0.6.5 R6_2.5.1 rpart_4.1.23
[37] lifecycle_1.0.4 git2r_0.33.0 stringr_1.5.1 htmlwidgets_1.6.4
[41] fs_1.6.4 foreign_0.8-87 cluster_2.1.6 pkgconfig_2.0.3
[45] pillar_1.9.0 bslib_0.8.0 later_1.3.2 gtable_0.3.5
[49] data.table_1.16.0 glue_1.7.0 Rcpp_1.0.13 highr_0.11
[53] xfun_0.47 tibble_3.2.1 tidyselect_1.2.1 rstudioapi_0.16.0
[57] knitr_1.48 htmltools_0.5.8.1 rmarkdown_2.28 compiler_4.4.1