Changes between Version 42 and Version 43 of Recette BilanLot
- Timestamp:
- Dec 24, 2012 9:11:05 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Recette BilanLot
v42 v43 58 58 * Ajoutons un titre et des légendes (attention requiert ggplot version 0.9.3) : 59 59 {{{ 60 bilan_lot<-get("bilan_lot",envir_stacomi) 61 g<-ggplot(bilan_lot@data) 60 62 g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 61 63 ggtitle("Structure en taille des Aloses")+ … … 72 74 }}} 73 75 {{{ 74 p+stat_density(aes(x=val_quant,fill=annee),position='stack')+facet_grid(. ~ .)+ 75 opts(title="Structure en taille des Aloses",labels = c(x = "Tailles (mm)", y = "Densite",annee="Annees"))+ 76 bilan_lot<-get("bilan_lot",envir_stacomi) 77 g<-ggplot(bilan_lot@data) 78 g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 79 ggtitle("Structure en taille des Aloses")+ 80 xlab("Tailles (mm)")+ 81 ylab("Densite")+ 76 82 annotate("text",x = 300, y = 0.07, label = "essai == 2", parse = T, vjust = 0, hjust = 0)+ 77 scale_fill_brewer( palette ="Set3")83 scale_fill_brewer(name="Annees",palette="Set3") 78 84 }}} 79 85 * essai = 3 80 86 {{{ 81 p+stat_density(aes(x=val_quant,fill=annee),position='stack')+facet_grid(. ~ .)+ 82 opts(title="Structure en taille des Aloses",labels = c(x = "Tailles (mm)", y = "Densite",annee="Annees"))+ 87 bilan_lot<-get("bilan_lot",envir_stacomi) 88 g<-ggplot(bilan_lot@data) 89 require(vcd) 90 col<-diverge_hcl(length(unique(bilan_lot@data$annee)),h = c(246, 40), c = 96, l = c(65, 90)) 91 g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 92 ggtitle("Structure en taille des Aloses")+ 93 xlab("Tailles (mm)")+ 94 ylab("Densite")+ 83 95 annotate("text",x = 300, y = 0.07, label = "essai == 3", size=10, parse = T, vjust = 0, hjust = 0,col="red")+ 84 scale_fill_ brewer(palette = "Spectral")96 scale_fill_manual(name="Annees",values=col) 85 97 }}} 86 98 * essai = 4