From 1f3bc203061be5caff77c768512faef6985c5b92 Mon Sep 17 00:00:00 2001 From: Corentin Choisy Date: Wed, 31 Jan 2024 10:05:13 +0000 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'RProject/pcm.R'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- RProject/pcm.R | 1720 ++++++++++++++++++++++-------------------------- 1 file changed, 804 insertions(+), 916 deletions(-) diff --git a/RProject/pcm.R b/RProject/pcm.R index b831698..9f5469a 100644 --- a/RProject/pcm.R +++ b/RProject/pcm.R @@ -43,19 +43,19 @@ replicate_pcm_analysis_m4 <- function(df=NULL,treatment='TT',irtmodel='PCM2',met if (method=='MML') { n <- max(df[,sequence]) print(n) - tam1 <- pbmclapply(seq(1,n), - function(x) pcm_analysis(df=df[df[,sequence]==x,],treatment=treatment,irtmodel=irtmodel) - ) + tam1 <- lapply(seq(1,n), + function(x) pcm_analysis(df=df[df[,sequence]==x,],treatment=treatment,irtmodel=irtmodel) + ) } listitems <- c(sapply(c('_1','_2','_3'),function(x) paste0(sapply(seq(1,nbitems),function(x) paste0('item',x)),x))) returndat <- data.frame(matrix(nrow=max(df[,sequence]),ncol=length(listitems))) colnames(returndat) <- listitems for (s in seq(1,max(df[,sequence]))) { - for (k in seq(1,nbitems)) { - returndat[s,paste0('item',k,'_1')] <- tam1[[s]]$item[k,'AXsi_.Cat1'] - returndat[s,paste0('item',k,'_2')] <- tam1[[s]]$item[k,'AXsi_.Cat2']-tam1[[s]]$item[k,'AXsi_.Cat1'] - returndat[s,paste0('item',k,'_3')] <- tam1[[s]]$item[k,'AXsi_.Cat3']-tam1[[s]]$item[k,'AXsi_.Cat2'] - } + for (k in seq(1,nbitems)) { + returndat[s,paste0('item',k,'_1')] <- tam1[[s]]$item[k,'AXsi_.Cat1'] + returndat[s,paste0('item',k,'_2')] <- tam1[[s]]$item[k,'AXsi_.Cat2']-tam1[[s]]$item[k,'AXsi_.Cat1'] + returndat[s,paste0('item',k,'_3')] <- tam1[[s]]$item[k,'AXsi_.Cat3']-tam1[[s]]$item[k,'AXsi_.Cat2'] + } } returndat <- returndat[,sort_by(listitems, lastChar)] returndat$beta <- sapply(seq(1,max(df[,sequence])),function(k) tam1[[k]]$beta[2]) @@ -91,7 +91,7 @@ replicate_pcm_analysis_m2 <- function(df=NULL,treatment='TT',irtmodel='PCM2',met if (method=='MML') { n <- max(df[,sequence]) print(n) - tam1 <- pbmclapply(seq(1,n), + tam1 <- lapply(seq(1,n), function(x) pcm_analysis(df=df[df[,sequence]==x,],treatment=treatment,irtmodel=irtmodel) ) } @@ -126,12 +126,12 @@ replicate_pcm_analysis_m2 <- function(df=NULL,treatment='TT',irtmodel='PCM2',met } -replicate_pcm_analysis<- function(df=NULL,treatment='TT',irtmodel='PCM2',method='MML',sequence='replication',truebeta=0,eff.size=0,difsize=NA,nbdif=0) { +replicate_pcm_analysis<- function(df=NULL,treatment='TT',irtmodel='PCM2',method='MML',sequence='replication',eff.size=0,difsize=NA,nbdif=0) { j <- max(df$item1) if(j==1) { - return(replicate_pcm_analysis_m2(df=NULL,treatment='TT',irtmodel='PCM2',method='MML',sequence='replication',truebeta=0,eff.size=0,difsize=NA,nbdif=0)) + return(replicate_pcm_analysis_m2(df=df,treatment=treatment,irtmodel=irtmodel,method=method,sequence=sequence,eff.size=eff.size,difsize=difsize,nbdif=nbdif)) } else { - return(replicate_pcm_analysis_m4(df=NULL,treatment='TT',irtmodel='PCM2',method='MML',sequence='replication',truebeta=0,eff.size=0,difsize=NA,nbdif=0)) + return(replicate_pcm_analysis_m4(df=df,treatment=treatment,irtmodel=irtmodel,method=method,sequence=sequence,eff.size=eff.size,difsize=difsize,nbdif=nbdif)) } } @@ -147,63 +147,63 @@ registerDoMC(4) #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1A_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x))) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_1A_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_1A_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_1A_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_1A_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_1A_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_1A_300.csv') #### B: H1 TRUE / ES 0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1B_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_1B_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_1B_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_1B_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_1B_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_1B_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_1B_300.csv') #### C: H1 TRUE / ES 0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1C_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_1C_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_1C_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_1C_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_1C_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_1C_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_1C_300.csv') #### D: H1 TRUE / ES -0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1D_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_1D_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_1D_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_1D_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_1D_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_1D_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_1D_300.csv') #### E: H1 TRUE / ES -0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_1E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_1E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_1E_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_1E_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_1E_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_1E_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_1E_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_1E_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_1E_300.csv') @@ -217,63 +217,63 @@ write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2A_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x))) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_2A_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_2A_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_2A_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_2A_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_2A_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_2A_300.csv') #### B: H1 TRUE / ES 0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2B_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_2B_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_2B_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_2B_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_2B_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_2B_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_2B_300.csv') #### C: H1 TRUE / ES 0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2C_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_2C_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_2C_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_2C_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_2C_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_2C_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_2C_300.csv') #### D: H1 TRUE / ES -0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2D_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_2D_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_2D_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_2D_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_2D_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_2D_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_2D_300.csv') #### E: H1 TRUE / ES -0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_2E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_2E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_2E_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_2E_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_2E_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_2E_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_2E_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_2E_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_2E_300.csv') @@ -287,63 +287,63 @@ write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3A_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x))) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_3A_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_3A_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_3A_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_3A_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_3A_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_3A_300.csv') #### B: H1 TRUE / ES 0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3B_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_3B_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_3B_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_3B_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_3B_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_3B_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_3B_300.csv') #### C: H1 TRUE / ES 0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3C_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_3C_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_3C_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_3C_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_3C_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_3C_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_3C_300.csv') #### D: H1 TRUE / ES -0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3D_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_3D_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_3D_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_3D_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_3D_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_3D_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_3D_300.csv') #### E: H1 TRUE / ES -0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_3E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_3E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_3E_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_3E_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_3E_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_3E_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_3E_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_3E_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_3E_300.csv') @@ -357,63 +357,63 @@ write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4A_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x))) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_4A_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_4A_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_4A_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_4A_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_4A_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_4A_300.csv') #### B: H1 TRUE / ES 0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4B_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_4B_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_4B_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_4B_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_4B_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_4B_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_4B_300.csv') #### C: H1 TRUE / ES 0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4C_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = 0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_4C_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_4C_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_4C_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_4C_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_4C_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_4C_300.csv') #### D: H1 TRUE / ES -0.2 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4D_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.2)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_4D_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_4D_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_4D_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_4D_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_4D_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_4D_300.csv') #### E: H1 TRUE / ES -0.4 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N100/scenario_4E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N200/scenario_4E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/NoDIF/N300/scenario_4E_300.csv') res <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),eff.size = -0.4)) -write.csv(res[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N100/scenario_4E_100.csv') -write.csv(res[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N200/scenario_4E_200.csv') -write.csv(res[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/NoDIF/N300/scenario_4E_300.csv') +write.csv(res[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_4E_100.csv') +write.csv(res[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_4E_200.csv') +write.csv(res[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_4E_300.csv') ############################################################################## @@ -428,94 +428,87 @@ registerDoMC(4) #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_5A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_5A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_5A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_5A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_5A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_5A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_5A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_5A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_5A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_5A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_5A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_5A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_5B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_5B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_5B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_5B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_5B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_5B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_5B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_5B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_5B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_5B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_5B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_5B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_5C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_5C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_5C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_5C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_5C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_5C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_5C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_5C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_5C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_5C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_5C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_5C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_5D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_5D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_5D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_5D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_5D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_5D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_5D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_5D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_5D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_5D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_5D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_5D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_5E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_5E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_5E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_5E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_5E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_5E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_5E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_5E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_5E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_5E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_5E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_5E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_5F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_5F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_5F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_5F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_5F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_5F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_5F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_5F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_5F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_5F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_5F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_5F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_5G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_5G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_5G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_5G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_5G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_5G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_5G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_5G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_5G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_5G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_5G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_5G_300_nodif.csv') @@ -530,94 +523,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_6A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_6A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_6A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_6A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_6A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_6A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_6A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_6A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_6A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_6A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_6A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_6A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_6B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_6B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_6B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_6B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_6B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_6B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_6B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_6B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_6B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_6B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_6B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_6B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_6C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_6C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_6C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_6C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_6C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_6C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_6C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_6C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_6C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_6C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_6C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_6C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_6D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_6D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_6D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_6D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_6D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_6D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_6D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_6D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_6D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_6D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_6D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_6D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_6E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_6E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_6E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_6E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_6E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_6E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_6E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_6E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_6E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_6E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_6E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_6E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_6F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_6F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_6F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_6F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_6F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_6F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_6F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_6F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_6F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_6F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_6F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_6F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_6G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_6G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_6G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_6G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_6G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_6G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_6G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_6G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_6G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_6G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_6G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_6G_300_nodif.csv') @@ -632,94 +618,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_7A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_7A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_7A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_7A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_7A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_7A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_7A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_7A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_7A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_7A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_7A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_7A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_7B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_7B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_7B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_7B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_7B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_7B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_7B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_7B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_7B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_7B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_7B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_7B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_7C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_7C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_7C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_7C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_7C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_7C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_7C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_7C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_7C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_7C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_7C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_7C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_7D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_7D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_7D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_7D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_7D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_7D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_7D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_7D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_7D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_7D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_7D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_7D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_7E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_7E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_7E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_7E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_7E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_7E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_7E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_7E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_7E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_7E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_7E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_7E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_7F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_7F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_7F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_7F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_7F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_7F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_7F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_7F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_7F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_7F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_7F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_7F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_7G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_7G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_7G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_7G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_7G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_7G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_7G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_7G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_7G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_7G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_7G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_7G_300_nodif.csv') @@ -735,94 +714,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_8A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_8A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_8A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_8A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_8A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_8A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_8A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_8A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_8A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_8A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_8A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_8A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_8B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_8B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_8B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_8B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_8B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_8B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_8B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_8B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_8B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_8B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_8B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_8B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_8C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_8C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_8C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_8C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_8C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_8C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_8C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_8C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_8C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_8C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_8C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_8C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_8D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_8D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_8D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_8D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_8D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_8D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_8D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_8D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_8D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_8D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_8D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_8D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_8E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_8E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_8E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_8E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_8E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_8E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_8E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_8E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_8E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_8E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_8E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_8E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_8F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_8F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_8F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_8F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_8F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_8F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_8F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_8F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_8F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_8F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_8F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_8F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_8G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_8G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_8G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_8G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_8G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_8G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_8G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_8G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_8G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_8G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_8G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_8G_300_nodif.csv') @@ -838,94 +810,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_9A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_9A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_9A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_9A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_9A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_9A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_9A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_9A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_9A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_9A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_9A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_9A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_9B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_9B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_9B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_9B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_9B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_9B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_9B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_9B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_9B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_9B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_9B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_9B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_9C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_9C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_9C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_9C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_9C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_9C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_9C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_9C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_9C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_9C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_9C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_9C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_9D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_9D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_9D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_9D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_9D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_9D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_9D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_9D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_9D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_9D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_9D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_9D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_9E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_9E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_9E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_9E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_9E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_9E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_9E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_9E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_9E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_9E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_9E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_9E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_9F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_9F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_9F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_9F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_9F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_9F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_9F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_9F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_9F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_9F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_9F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_9F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_9G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_9G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_9G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_9G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_9G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_9G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_9G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_9G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_9G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_9G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_9G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_9G_300_nodif.csv') @@ -940,94 +905,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_10A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_10A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_10A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_10A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_10A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_10A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_10A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_10A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_10A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_10A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_10A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_10A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_10B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_10B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_10B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_10B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_10B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_10B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_10B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_10B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_10B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_10B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_10B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_10B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_10C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_10C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_10C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_10C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_10C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_10C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_10C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_10C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_10C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_10C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_10C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_10C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_10D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_10D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_10D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_10D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_10D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_10D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_10D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_10D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_10D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_10D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_10D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_10D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_10E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_10E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_10E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_10E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_10E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_10E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_10E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_10E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_10E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_10E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_10E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_10E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_10F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_10F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_10F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_10F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_10F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_10F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_10F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_10F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_10F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_10F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_10F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_10F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_10G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_10G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_10G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_10G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_10G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_10G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_10G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_10G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_10G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_10G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_10G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_10G_300_nodif.csv') @@ -1042,94 +1000,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_11A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_11A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_11A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_11A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_11A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_11A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_11A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_11A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_11A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_11A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_11A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_11A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_11B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_11B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_11B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_11B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_11B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_11B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_11B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_11B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_11B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_11B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_11B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_11B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_11C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_11C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_11C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_11C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_11C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_11C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_11C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_11C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_11C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_11C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_11C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_11C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_11D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_11D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_11D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_11D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_11D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_11D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_11D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_11D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_11D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_11D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_11D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_11D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_11E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_11E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_11E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_11E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_11E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_11E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_11E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_11E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_11E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_11E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_11E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_11E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_11F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_11F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_11F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_11F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_11F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_11F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_11F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_11F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_11F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_11F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_11F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_11F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_11G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_11G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_11G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_11G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_11G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_11G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_11G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_11G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_11G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_11G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_11G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_11G_300_nodif.csv') @@ -1145,94 +1096,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_12A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_12A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_12A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_12A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_12A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_12A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_12A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_12A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_12A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_12A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_12A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_12A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_12B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_12B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_12B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_12B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_12B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_12B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_12B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_12B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_12B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_12B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_12B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_12B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_12C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_12C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_12C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_12C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_12C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_12C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_12C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_12C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_12C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_12C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_12C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_12C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_12D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_12D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_12D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_12D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_12D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_12D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_12D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_12D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_12D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_12D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_12D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_12D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_12E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_12E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_12E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_12E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_12E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_12E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_12E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_12E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_12E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_12E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_12E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_12E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_12F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_12F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_12F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_12F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_12F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_12F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_12F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_12F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_12F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_12F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_12F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_12F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_12G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_12G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_12G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_12G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_12G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_12G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_12G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_12G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_12G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_12G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_12G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_12G_300_nodif.csv') @@ -1248,94 +1192,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_13A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_13A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_13A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_13A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_13A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_13A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_13A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_13A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_13A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_13A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_13A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_13A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_13B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_13B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_13B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_13B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_13B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_13B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_13B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_13B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_13B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_13B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_13B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_13B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_13C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_13C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_13C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_13C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_13C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_13C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_13C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_13C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_13C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_13C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_13C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_13C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_13D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_13D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_13D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_13D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_13D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_13D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_13D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_13D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_13D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_13D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_13D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_13D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_13E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_13E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_13E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_13E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_13E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_13E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_13E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_13E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_13E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_13E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_13E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_13E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_13F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_13F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_13F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_13F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_13F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_13F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_13F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_13F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_13F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_13F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_13F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_13F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_13G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_13G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_13G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_13G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_13G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_13G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_13G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_13G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_13G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_13G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_13G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_13G_300_nodif.csv') @@ -1350,94 +1287,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_14A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_14A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_14A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_14A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_14A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_14A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_14A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_14A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_14A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_14A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_14A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_14A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_14B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_14B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_14B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_14B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_14B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_14B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_14B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_14B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_14B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_14B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_14B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_14B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_14C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_14C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_14C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_14C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_14C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_14C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_14C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_14C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_14C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_14C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_14C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_14C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_14D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_14D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_14D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_14D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_14D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_14D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_14D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_14D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_14D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_14D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_14D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_14D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_14E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_14E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_14E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_14E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_14E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_14E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_14E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_14E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_14E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_14E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_14E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_14E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_14F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_14F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_14F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_14F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_14F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_14F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_14F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_14F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_14F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_14F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_14F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_14F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_14G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_14G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_14G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_14G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_14G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_14G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_14G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_14G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_14G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_14G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_14G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_14G_300_nodif.csv') @@ -1452,94 +1382,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_15A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_15A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_15A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_15A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_15A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_15A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_15A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_15A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_15A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_15A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_15A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_15A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_15B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_15B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_15B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_15B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_15B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_15B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_15B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_15B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_15B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_15B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_15B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_15B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_15C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_15C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_15C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_15C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_15C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_15C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_15C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_15C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_15C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_15C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_15C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_15C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_15D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_15D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_15D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_15D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_15D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_15D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_15D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_15D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_15D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_15D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_15D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_15D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_15E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_15E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_15E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_15E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_15E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_15E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_15E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_15E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_15E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_15E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_15E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_15E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_15F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_15F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_15F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_15F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_15F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_15F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_15F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_15F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_15F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_15F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_15F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_15F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_15G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_15G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_15G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_15G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_15G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_15G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_15G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_15G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_15G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_15G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_15G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_15G_300_nodif.csv') @@ -1555,94 +1478,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_16A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_16A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_16A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_16A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_16A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_16A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_16A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_16A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_16A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_16A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_16A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_16A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_16B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_16B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_16B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_16B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_16B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_16B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_16B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_16B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_16B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_16B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_16B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_16B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_16C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_16C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_16C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_16C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_16C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_16C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_16C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_16C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_16C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_16C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_16C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_16C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_16D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_16D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_16D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_16D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_16D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_16D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_16D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_16D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_16D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_16D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_16D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_16D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_16E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_16E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_16E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_16E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_16E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_16E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_16E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_16E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_16E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_16E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_16E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_16E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_16F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_16F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_16F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_16F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_16F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_16F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_16F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_16F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_16F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_16F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_16F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_16F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_16G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_16G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_16G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_16G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_16G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_16G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_16G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_16G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_16G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_16G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_16G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_16G_300_nodif.csv') @@ -1658,94 +1574,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_17A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_17A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_17A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_17A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_17A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_17A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_17A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_17A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_17A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_17A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_17A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_17A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_17B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_17B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_17B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_17B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_17B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_17B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_17B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_17B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_17B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_17B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_17B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_17B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_17C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_17C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_17C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_17C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_17C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_17C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_17C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_17C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_17C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_17C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_17C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_17C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_17D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_17D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_17D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_17D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_17D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_17D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_17D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_17D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_17D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_17D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_17D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_17D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_17E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_17E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_17E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_17E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_17E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_17E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_17E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_17E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_17E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_17E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_17E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_17E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_17F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_17F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_17F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_17F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_17F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_17F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_17F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_17F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_17F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_17F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_17F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_17F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_17G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_17G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_17G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_17G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_17G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_17G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_17G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_17G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_17G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_17G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_17G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_17G_300_nodif.csv') @@ -1760,94 +1669,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_18A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_18A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_18A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_18A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_18A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_18A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_18A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_18A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_18A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_18A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_18A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_18A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_18B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_18B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_18B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_18B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_18B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_18B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_18B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_18B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_18B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_18B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_18B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_18B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_18C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_18C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_18C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_18C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_18C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_18C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_18C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_18C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_18C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_18C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_18C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_18C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_18D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_18D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_18D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_18D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_18D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_18D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_18D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_18D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_18D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_18D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_18D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_18D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_18E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_18E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_18E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_18E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_18E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_18E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_18E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_18E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_18E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_18E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_18E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_18E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_18F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_18F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_18F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_18F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_18F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_18F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_18F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_18F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_18F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_18F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_18F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_18F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_18G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_18G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_18G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_18G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_18G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_18G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.3,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_18G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_18G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_18G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_18G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_18G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_18G_300_nodif.csv') @@ -1862,94 +1764,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_19A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_19A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_19A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_19A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_19A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_19A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_19A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_19A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_19A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_19A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_19A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_19A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_19B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_19B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_19B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_19B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_19B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_19B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_19B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_19B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_19B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_19B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_19B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_19B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_19C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_19C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_19C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_19C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_19C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_19C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_19C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_19C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_19C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_19C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_19C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_19C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_19D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_19D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_19D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_19D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_19D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_19D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_19D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_19D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_19D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_19D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_19D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_19D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_19E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_19E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_19E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_19E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_19E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_19E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_19E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_19E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_19E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_19E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_19E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_19E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_19F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_19F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_19F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_19F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_19F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_19F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_19F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_19F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_19F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_19F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_19F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_19F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_19G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_19G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_19G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_19G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_19G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_19G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_19G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_19G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_19G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_19G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_19G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_19G_300_nodif.csv') @@ -1965,94 +1860,87 @@ write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/An #### A: H0 TRUE -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_20A_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_20A_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_20A_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_20A_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_20A_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_20A_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_20A_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_20A_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_20A_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_20A_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_20A_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_20A_300_nodif.csv') #### B: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_20B_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_20B_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_20B_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_20B_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_20B_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_20B_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_20B_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_20B_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_20B_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_20B_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_20B_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_20B_300_nodif.csv') #### C: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_20C_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_20C_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_20C_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_20C_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_20C_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_20C_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_20C_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_20C_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_20C_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_20C_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_20C_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_20C_300_nodif.csv') #### D: H1 TRUE / ES = 0.4 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_20D_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_20D_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_20D_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_20D_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_20D_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_20D_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = 0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_20D_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_20D_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_20D_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_20D_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_20D_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_20D_300_nodif.csv') #### E: H1 TRUE / ES = 0.4 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_20E_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_20E_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_20E_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_20E_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_20E_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_20E_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = 0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_20E_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_20E_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_20E_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_20E_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_20E_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_20E_300_nodif.csv') #### F: H1 TRUE / ES = 0.2 / DS = 0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_20F_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_20F_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_20F_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_20F_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_20F_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_20F_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.2)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_20F_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_20F_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_20F_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_20F_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_20F_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_20F_300_nodif.csv') #### G: H1 TRUE / ES = 0.2 / DS = -0.3 -dat1 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N100/scenario_20G_100.csv') -dat2 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N200/scenario_20G_200.csv') -dat3 <- read.csv(file = '/home/corentin/Documents/These/Recherche/Simulations/Data/DIF/N300/scenario_20G_300.csv') +dat1 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N100/scenario_20G_100.csv') +dat2 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N200/scenario_20G_200.csv') +dat3 <- read.csv(file = '/home/sphere/Corentin/These/Recherche/Simulations/Data/DIF/N300/scenario_20G_300.csv') -res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) res_nodif <- pbmclapply(c('dat1','dat2','dat3'),function(x) replicate_pcm_analysis(get(x),nbdif = 1,difsize = -0.5,eff.size = -0.4)) -write.csv(res_nodif[[1]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N100/scenario_20G_100_nodif.csv') -write.csv(res_nodif[[2]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N200/scenario_20G_200_nodif.csv') -write.csv(res_nodif[[3]],'/home/corentin/Documents/These/Recherche/Simulation/Analysis/DIF/N300/scenario_20G_300_nodif.csv') +write.csv(res_nodif[[1]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N100/scenario_20G_100_nodif.csv') +write.csv(res_nodif[[2]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N200/scenario_20G_200_nodif.csv') +write.csv(res_nodif[[3]],'/home/sphere/Corentin/These/Recherche/Simulations/Analysis/NoDIF/N300/scenario_20G_300_nodif.csv')