Changes between Version 42 and Version 43 of Recette BilanLot


Ignore:
Timestamp:
Dec 24, 2012 9:11:05 PM (12 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Recette BilanLot

    v42 v43  
    5858 * Ajoutons un titre et des légendes (attention requiert ggplot version 0.9.3) : 
    5959 {{{ 
     60bilan_lot<-get("bilan_lot",envir_stacomi) 
     61g<-ggplot(bilan_lot@data) 
    6062g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 
    6163                ggtitle("Structure en taille des Aloses")+ 
     
    7274}}} 
    7375{{{ 
    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"))+ 
     76bilan_lot<-get("bilan_lot",envir_stacomi) 
     77g<-ggplot(bilan_lot@data) 
     78g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 
     79                ggtitle("Structure en taille des Aloses")+ 
     80                xlab("Tailles (mm)")+ 
     81                ylab("Densite")+ 
    7682                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") 
    7884}}} 
    7985 * essai = 3 
    8086{{{ 
    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"))+ 
     87bilan_lot<-get("bilan_lot",envir_stacomi) 
     88g<-ggplot(bilan_lot@data) 
     89require(vcd) 
     90col<-diverge_hcl(length(unique(bilan_lot@data$annee)),h = c(246, 40), c = 96, l = c(65, 90)) 
     91g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 
     92                ggtitle("Structure en taille des Aloses")+ 
     93                xlab("Tailles (mm)")+ 
     94                ylab("Densite")+ 
    8395                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)      
    8597}}} 
    8698 * essai = 4