Modérateur : Groupe des modérateurs
Code : Tout sélectionner
A = table(data$variable)
Code : Tout sélectionner
barplot(A)
Code : Tout sélectionner
barplot(A, beside = T)
Code : Tout sélectionner
library(ggplot2)
ggplot(
data,
aes(x = cond, weight = nCells, fill = couleur)
) +
geom_bar(position = "fill")
Code : Tout sélectionner
tap <- tapply(df$nCells, df[,c(2,1)], sum)
barplot(tap, legend.text = T, col = rainbow(4))
Gabriel Terraz a écrit :Et sans package, quelque chose dans le genre ?Code : Tout sélectionner
tap <- tapply(df$nCells, df[,c(2,1)], sum)
barplot(tap, legend.text = T, col = rainbow(4))
Code : Tout sélectionner
tap <- tapply(df$nCells, df[,c(2,1)], sum, na.rm = T)
tap[is.na(tap)] <- 0
noms <- c("c", "c+CTG", "c+CTOr", "CTG", "CTG+CTOt", "CTOr")
barplot(tap, legend.text = T, col = rainbow(4), names.arg = noms)
Code : Tout sélectionner
tapP <- prop.table(tap,2)
barplot(tapP, legend.text = T, col = rainbow(4), names.arg = noms)
Code : Tout sélectionner
par(xpd = T, mar = c(5,4,4,6))
Code : Tout sélectionner
barplot(tap, legend.text = T, col = rainbow(4), names.arg = noms,args.legend=list(x="right",xpd = T,inset = c(-0.2,0)))
Retourner vers « Questions en cours »
Utilisateurs parcourant ce forum : Aucun utilisateur enregistré et 1 invité