Changes between Version 43 and Version 44 of Recette BilanLot


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Recette BilanLot

    v43 v44  
    5353 
    5454[[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)]] 
    5755 
    5856 * Ajoutons un titre et des légendes (attention requiert ggplot version 0.9.3) : 
     
    6664                annotate("text",x = 300, y = 0.07, label = "essai == 1",  parse = T, vjust = 0, hjust = 0) 
    6765 }}} 
     66[[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette3.jpg,400px)]] 
    6867 
    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)]] 
    7068 * essai =2 
    7169{{{ 
     
    8381                scale_fill_brewer(name="Annees",palette="Set3") 
    8482}}} 
     83[[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette4.jpg,400px)]] 
    8584 * essai = 3 
    8685{{{ 
    8786bilan_lot<-get("bilan_lot",envir_stacomi) 
    8887g<-ggplot(bilan_lot@data) 
    89 require(vcd) 
     88require(vcd) # appel au package vcd à installer à partir de R, package, installer les packages. 
    9089col<-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 
    9191g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 
    9292                ggtitle("Structure en taille des Aloses")+ 
     
    9696                scale_fill_manual(name="Annees",values=col)      
    9797}}} 
     98[[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette5.jpg,400px)]] 
    9899 * essai = 4 
    99100{{{ 
    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"))+ 
     101bilan_lot<-get("bilan_lot",envir_stacomi) 
     102g<-ggplot(bilan_lot@data) 
     103col<-rainbow(length(unique(bilan_lot@data$annee))) 
     104g+stat_density(aes(x=val_quant,fill=annee),position='stack')+ 
     105                ggtitle("Structure en taille des Aloses")+ 
     106                xlab("Tailles (mm)")+ 
     107                ylab("Densite")+ 
    103108                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) 
    105110}}} 
     111[[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette6.jpg,400px)]] 
    106112 
     113 
     114 
     115 [[Image(source:stacomi/trunk/docs/trac/Bilan_lot_recette7.jpg,400px)]] 
    107116[[BR]] 
    108117''' Utilisation du facettage '''