Skip to content
Snippets Groups Projects
  1. Dec 30, 2014
  2. Dec 28, 2014
  3. Dec 23, 2014
  4. Dec 21, 2014
  5. Dec 20, 2014
  6. Dec 18, 2014
  7. Dec 17, 2014
    • Xavier Fernández i Marín's avatar
      Major revision of the code moving plyr to dplyr and reshape2 to tidyr. · fc1922c0
      Xavier Fernández i Marín authored
        - The main object from the ggs() call is no more a data.frame, but a tbl_df().
      
        - All ddply calls transformed into combinations of group_by() calls. Other
        functions (like cbind(), subset() and rbind() have also been implemented using
        the dplyr style).
      
        - All melt() and dcast() transformed into gather() and spread() (and even some
        as.data.frame.table()).
      
        - Deleting the possibility of parallelization. It is not implemented in dplyr,
        althoug the C++ backend that does the real work is clearly faster than the old
        plyr.
      
        - Major revision of ggmcmc() with a bit of an ad-hoc approach to passing
        attributes when there are more parameters than parameters allowed in each
        page.
      fc1922c0
    • Xavier Fernández i Marín's avatar
      Include data (and samples from models) to facilitate examples. · 6a7d7247
      Xavier Fernández i Marín authored
        - MCMC output from a linear regression model with dummy data
        (data/samples.rda).
      
        - MCMC output from a logit regression model with dummy data
        (data/samples_binary.rda).
      
        - MCMC output and other description variables for a hierarchical / multilevel
        model based on radon example at Gelman & Hill.
      6a7d7247
  8. Dec 16, 2014
  9. May 28, 2014
    • akrawitz's avatar
      Fix bug causing order of parameters to get changed · 16374877
      akrawitz authored
      I believe the goal here is to remove the unused levels of the factor. droplevels(D.sub$Parameter) should be used for this, because the use of factor(as.character(D.sub$Parameter)) was causing the existing ordering of the levels of Parameter to be lost and to be replaced with a purely alphabetical ordering. This was leading to "x[10]" coming before "x[2]" for example. As a result, in parameters were in the wrong order in many of the ggs_ plotting functions if the "family" option was used.
      16374877
  10. Feb 18, 2014
  11. Feb 17, 2014
  12. Feb 16, 2014
  13. Jan 30, 2014
    • Xavier Fernández i Marín's avatar
      Solve bug with par_labels · bd002c5a
      Xavier Fernández i Marín authored
        - Reordering was wrong because levels of parameters were incorrectly sorted
      
        - In cases of more parameters than entries in the par_labels dataset the
        matching was also wrong
      bd002c5a
  14. Nov 17, 2013
  15. Nov 06, 2013
  16. Oct 05, 2013
  17. Oct 03, 2013
  18. Sep 14, 2013
  19. Sep 09, 2013
Loading