mirror of
https://github.com/Polarolouis/anova-phylogenetique-projet-msv.git
synced 2026-06-17 10:15:25 +02:00
Use library instead of require
This commit is contained in:
parent
32a137cc4e
commit
12d6e51645
1 changed files with 11 additions and 10 deletions
|
|
@ -4,18 +4,19 @@
|
|||
### Import et fonctions utiles
|
||||
# Repartir du fichier d'analyse Rmd
|
||||
# Utiliser data.trans, ligne 883 voir RMD
|
||||
require(phylotools)
|
||||
require(phytools)
|
||||
require(phylolm)
|
||||
require(limma)
|
||||
require(edgeR)
|
||||
require(here)
|
||||
require(ggplot2)
|
||||
require(dplyr)
|
||||
require(tidyr)
|
||||
library(phylotools)
|
||||
library(phytools)
|
||||
library(phylolm)
|
||||
library(limma)
|
||||
library(edgeR)
|
||||
library(here)
|
||||
library(ggplot2)
|
||||
library(dplyr)
|
||||
library(tidyr)
|
||||
|
||||
source("R/utils.R")
|
||||
|
||||
|
||||
### Data import
|
||||
cdata <- readRDS(here("data", "data_TER", "data", "chen2019_rodents_cpd.rds"))
|
||||
is.valid <- compcodeR:::check_phyloCompData(cdata)
|
||||
|
|
@ -111,7 +112,7 @@ ggplot(pvalues_dataframe) +
|
|||
facet_wrap(~test_method)
|
||||
|
||||
# DONE utiliser UpSetR pour diagramme de Venn
|
||||
require(UpSetR)
|
||||
library(UpSetR)
|
||||
upset(pvalues_dataframe_wide,
|
||||
nsets = 8,
|
||||
mainbar.y.label = "Nombre de gènes en commun",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue