Changes between Version 43 and Version 44 of Recette BilanLot
- Timestamp:
- Dec 24, 2012 9:56:25 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Recette BilanLot
v43 v44 53 53 54 54 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette2.jpg,400px)]] 55 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette3.jpg,400px)]]56 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette4.jpg,400px)]]57 55 58 56 * Ajoutons un titre et des légendes (attention requiert ggplot version 0.9.3) : … … 66 64 annotate("text",x = 300, y = 0.07, label = "essai == 1", parse = T, vjust = 0, hjust = 0) 67 65 }}} 66 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette3.jpg,400px)]] 68 67 69 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette5.jpg,400px)]] [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette6.jpg,400px)]][[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette7.jpg,400px)]]70 68 * essai =2 71 69 {{{ … … 83 81 scale_fill_brewer(name="Annees",palette="Set3") 84 82 }}} 83 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette4.jpg,400px)]] 85 84 * essai = 3 86 85 {{{ 87 86 bilan_lot<-get("bilan_lot",envir_stacomi) 88 87 g<-ggplot(bilan_lot@data) 89 require(vcd) 88 require(vcd) # appel au package vcd à installer à partir de R, package, installer les packages. 90 89 col<-diverge_hcl(length(unique(bilan_lot@data$annee)),h = c(246, 40), c = 96, l = c(65, 90)) 90 # ici appel à une fonction externe, les scale...brewer demandent moins de 9 à 12 couleurs en fonction de la palette 91 91 g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 92 92 ggtitle("Structure en taille des Aloses")+ … … 96 96 scale_fill_manual(name="Annees",values=col) 97 97 }}} 98 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette5.jpg,400px)]] 98 99 * essai = 4 99 100 {{{ 100 couleurs=rainbow(12) 101 p+stat_density(aes(x=val_quant,fill=annee),position='stack')+facet_grid(. ~ .)+ 102 opts(title="Structure en taille des Aloses",labels = c(x = "Tailles (mm)", y = "Densite",annee="Annees"))+ 101 bilan_lot<-get("bilan_lot",envir_stacomi) 102 g<-ggplot(bilan_lot@data) 103 col<-rainbow(length(unique(bilan_lot@data$annee))) 104 g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 105 ggtitle("Structure en taille des Aloses")+ 106 xlab("Tailles (mm)")+ 107 ylab("Densite")+ 103 108 annotate("text",x = 300, y = 0.07, label = "essai == 4", parse = T, vjust = 0, hjust = 0,col="darkblue")+ 104 scale_fill_manual( values = couleurs)109 scale_fill_manual(name="Annees",values = col) 105 110 }}} 111 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette6.jpg,400px)]] 106 112 113 114 115 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette7.jpg,400px)]] 107 116 [[BR]] 108 117 ''' Utilisation du facettage '''