Skip to content

Commit

Permalink
differential expression analysis added
Browse files Browse the repository at this point in the history
  • Loading branch information
seanyoon777 committed Apr 3, 2023
1 parent a7c230c commit d3445c6
Show file tree
Hide file tree
Showing 16 changed files with 423 additions and 279 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
461 changes: 386 additions & 75 deletions exploratory.R

Large diffs are not rendered by default.

184 changes: 0 additions & 184 deletions exploratory_data.R

This file was deleted.

Binary file added figures_draft/.DS_Store
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 20 additions & 20 deletions proteomics.R
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
#setting foundations
if(!require(tidyverse)) install.packages("tidyverse", repos = "http://cran.us.r-project.org")
if(!require(caret)) install.packages("caret", repos = "http://cran.us.r-project.org")
if(!require(data.table)) install.packages("data.table", repos = "http://cran.us.r-project.org")
install.packages("corrr")
install.packages("igraph")
install.packages('cluster')
install.packages('factoextra')
library(corrr)
library(tidyverse)
library(purrr)
library(igraph)
library(corrplot)
library(caret)
library(dplyr)
library(data.table)
library(ggplot2)
library(pls)
library(tidyverse)
library(cluster)
library(factoextra)

load_lib("tidyverse")
load_lib("caret")
load_lib("data.table")
load_lib("corrr")
load_lib("igraph")
load_lib("cluster")
load_lib("factoextra")
load_lib("purrr")
load_lib("corrplot")
load_lib("dplyr")
load_lib("ggplot2")
load_lib("pls")
load_lib("ggraph")

loess_models <- function(plasma_prot_zscore_age, loess_span = 0.75) {
plasma_long <- plasma_prot_zscore_age %>%
Expand Down Expand Up @@ -65,3 +59,9 @@ loess_heatmap <- function(plasma_pred_zscore_long) {
plot.title = element_text(hjust = 0.5))
}


#cluster by trend




13 changes: 13 additions & 0 deletions proteomics_project.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

0 comments on commit d3445c6

Please sign in to comment.