X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=PrintRScript.py;h=18b387988d9b0eae3840de0a21d4cb2b130e5d55;hp=7ec15407223202e75074cb1ea5bf196e5f26d489;hb=7f5e0ba6ece181a04d872a7b6eeb2f13b33aa455;hpb=1a995a6ca4e8dbb09c8b9ab1276dabf17e065f0d diff --git a/PrintRScript.py b/PrintRScript.py index 7ec1540..18b3879 100644 --- a/PrintRScript.py +++ b/PrintRScript.py @@ -173,12 +173,12 @@ def RchdTxt(DicoPath, RscriptPath, mincl, classif_mode, nbt = 9, libsvdc = False """ % DicoPath['listeuce2'] txt += """ -# rm(data1) + rm(data1) """ if classif_mode == 0: txt += """ -# rm(data2) + rm(data2) """ txt += """ chd.result <- Rchdtxt("%s",mincl=%i,classif_mode=%i, nbt = nbt) @@ -378,6 +378,10 @@ write.csv2(gbcluster,file="%s") xmax <- max(afc$rowcoord[,1], na.rm = TRUE) + (0.1 * max(afc$rowcoord[,1], na.rm = TRUE)) ymin <- min(afc$rowcoord[,2], na.rm = TRUE) + (0.1 * min(afc$rowcoord[,2], na.rm = TRUE)) ymax <- max(afc$rowcoord[,2], na.rm = TRUE) + (0.1 * max(afc$rowcoord[,2], na.rm = TRUE)) + print(xmin) + print(xmax) + print(ymin) + print(ymax) """ % taillecar txt += """ PlotAfc2dCoul(afc, as.data.frame(chistabletot), "%s", what='coord', deb=1, fin=(debsup-1), xlab = xlab, ylab = ylab, xmin=xmin, xmax=xmax, ymin = ymin, ymax=ymax) @@ -540,11 +544,23 @@ def barplot(table, rownames, colnames, rgraph, tmpgraph, intxt = False) : tominf <- which(di == -Inf) if (length(toinf)) { di[toinf] <- NA - di[toinf] <- max(di, na.rm = TRUE) + 2 + valmax <- max(di, na.rm = TRUE) + if (valmax <= 0) { + valmax <- 2 + } else { + valmax <- valmax + 2 + } + di[toinf] <- valmax } if (length(tominf)) { di[tominf] <- NA - di[tominf] <- min(di, na.rm = TRUE) - 2 + valmin <- min(di, na.rm = TRUE) + if (valmin >=0) { + valmin <- -2 + } else { + valmin <- valmin - 2 + } + di[tominf] <- valmin } rownames(di)<- %s colnames(di) <- %s