X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=Rscripts%2Fafc_graph.R;h=8233d8ffae4fa73963604a6fe13be65c99899ea7;hp=e0c2adfae25c440193a87e54e1075a2653c7478b;hb=3d36aa1a6c5b7bdbf5d927af4abfd10c2e618b7a;hpb=12b4b71c8c8feb6154abc04dfa9bb93a521ef789 diff --git a/Rscripts/afc_graph.R b/Rscripts/afc_graph.R index e0c2adf..8233d8f 100644 --- a/Rscripts/afc_graph.R +++ b/Rscripts/afc_graph.R @@ -1,10 +1,10 @@ #Author: Pierre Ratinaud -#Copyright (c) 20010 Pierre Ratinaud +#Copyright (c) 20010-2013 Pierre Ratinaud #Lisense: GNU/GPL #fichier genere par IRaMuTeq -source('%s') +source('%s', encoding = 'utf8') typegraph <- %i what <- %i x <- %i @@ -51,6 +51,7 @@ if ( qui == 3 ) { if ( what == 0 ) table.in <- afc$colcoord if ( what == 1 ) table.in <- afc$colcrl rownames(table.in) <- afc$colnames + eff <- afc$colmass if (typegraph == 0) { table.in<-table.in[,c(x,y)] } else { @@ -76,7 +77,12 @@ if ( qui == 3 ) { ry <- range(table.in[,2], na.rm = TRUE) rz <- range(table.in[,3], na.rm = TRUE) } - eff <- rowSums(afctable) + if (exists('afctable')) { + eff <- rowSums(afctable) + } else { + eff <- afctable$rowmass + } + if (!is.null(debsup)) { if ( qui == 0 ) { table.in <- table.in[1:(debsup-1),] @@ -176,48 +182,23 @@ if (typegraph == 0) { make_afc_graph(table.in, classes, clnb, xlab, ylab, cex.txt = cex.par, xminmax = xminmax, yminmax = yminmax) } else { - - vire.nonascii <- function(rnames) { - print('vire non ascii') - couple <- list(c('é','e'), - c('è','e'), - c('ê','e'), - c('ë','e'), - c('î','i'), - c('ï','i'), - c('ì','i'), - c('à','a'), - c('â','a'), - c('ä','a'), - c('á','a'), - c('ù','u'), - c('û','u'), - c('ü','u'), - c('ç','c'), - c('ò','o'), - c('ô','o'), - c('ö','o'), - c('ñ','n') - ) - for (c in couple) { - rnames<-gsub(c[1],c[2], rnames) - } - rnames - } library(rgl) - #rn <- vire.nonascii(rownames(table.in)) - rn <- rownames(table.in) + rn <- vire.nonascii(rownames(table.in)) + rain = rainbow(clnb) + colors = rain[classes] + #rn <- rownames(table.in) rgl.open() + text3d(table.in[,1], table.in[,2], table.in[,3], rn, col = colors , cex = cex.par) + rgl.bg(col = c('white', "#99bb99"), front = "lines", box=FALSE, sphere = TRUE) par3d(cex=0.7) #par3d(windowRect = c(100,100,600,600)) - rgl.bg(col = c('white', "#99bb99"), front = "lines", box=FALSE, sphere = TRUE) rgl.lines(c(rx), c(0, 0), c(0, 0), col = "#000000") rgl.lines(c(0,0),c(ry),c(0,0),col = "#000000") rgl.lines(c(0,0),c(0,0),c(rz),col = "#000000") text3d(rx[2]+1,0,0, xlab) text3d(0,ry[2]+1,0, ylab) text3d(0,0,rz[2]+1, zlab) - rain = rainbow(clnb) + if (tchi) { maxchi <- norm.vec(maxchi, tchi.min/100, tchi.max/100) } else if (!is.null(cex.par)) { @@ -225,8 +206,8 @@ if (typegraph == 0) { } else { maxchi <- 0.1 } - colors = rain[classes] - text3d(table.in[,1], table.in[,2], table.in[,3], rn, col= colors , cex = cex.par) + + for (i in 1:clnb) { text3d(rx[2],(ry[2]+(0.2*i)),0,paste('classe',i),col=rain[i]) }