Permalink
Browse files

vignettes are now black and white

  • Loading branch information...
1 parent 72d4966 commit 1cb06246c590975fe5d776c69058d5808435cb25 @singmann committed May 25, 2017
@@ -5,6 +5,8 @@ options(width = 90)
require(afex) # needed for ANOVA, lsmeans is loaded automatically.
require(multcomp) # for advanced control for multiple testing/Type 1 errors.
require(lattice) # for plots
+lattice.options(default.theme = standard.theme(color = FALSE)) # black and white
+lattice.options(default.args = list(as.table = TRUE)) # better ordering
## ---------------------------------------------------------------------------------------
data(sk2011.1)
@@ -41,6 +41,8 @@ In contrast to the analysis reported in the manuscript, we initially do not sepa
require(afex) # needed for ANOVA, lsmeans is loaded automatically.
require(multcomp) # for advanced control for multiple testing/Type 1 errors.
require(lattice) # for plots
+lattice.options(default.theme = standard.theme(color = FALSE)) # black and white
+lattice.options(default.args = list(as.table = TRUE)) # better ordering
```
```{r}

Large diffs are not rendered by default.

Oops, something went wrong.
@@ -3,13 +3,13 @@ options(width = 90)
## ----message=FALSE, warning=FALSE-------------------------------------------------------
require(afex) # needed for ANOVA, lsmeans is loaded automatically.
+require(dplyr) # for working with data frames
+require(tidyr) # for transforming data frames from wide to long and the other way round.
require(multcomp) # for advanced control for multiple testing/Type 1 errors.
require(lattice) # for plots
require(latticeExtra) # for combining lattice plots, etc.
lattice.options(default.theme = standard.theme(color = FALSE)) # black and white
lattice.options(default.args = list(as.table = TRUE)) # better ordering
-require(dplyr) # for working with data frames
-require(tidyr) # for transforming dtaa frames from wide to long and the other way round.
data("fhch2010") # load
fhch <- droplevels(fhch2010[ fhch2010$correct,]) # remove errors
@@ -32,13 +32,13 @@ After loading the packages, we will load the data (which comes with `afex`), rem
```{r message=FALSE, warning=FALSE}
require(afex) # needed for ANOVA, lsmeans is loaded automatically.
+require(dplyr) # for working with data frames
+require(tidyr) # for transforming data frames from wide to long and the other way round.
require(multcomp) # for advanced control for multiple testing/Type 1 errors.
require(lattice) # for plots
require(latticeExtra) # for combining lattice plots, etc.
lattice.options(default.theme = standard.theme(color = FALSE)) # black and white
lattice.options(default.args = list(as.table = TRUE)) # better ordering
-require(dplyr) # for working with data frames
-require(tidyr) # for transforming dtaa frames from wide to long and the other way round.
data("fhch2010") # load
fhch <- droplevels(fhch2010[ fhch2010$correct,]) # remove errors

Large diffs are not rendered by default.

Oops, something went wrong.
@@ -41,6 +41,8 @@ In contrast to the analysis reported in the manuscript, we initially do not sepa
require(afex) # needed for ANOVA, lsmeans is loaded automatically.
require(multcomp) # for advanced control for multiple testing/Type 1 errors.
require(lattice) # for plots
+lattice.options(default.theme = standard.theme(color = FALSE)) # black and white
+lattice.options(default.args = list(as.table = TRUE)) # better ordering
```
```{r}
@@ -32,13 +32,13 @@ After loading the packages, we will load the data (which comes with `afex`), rem
```{r message=FALSE, warning=FALSE}
require(afex) # needed for ANOVA, lsmeans is loaded automatically.
+require(dplyr) # for working with data frames
+require(tidyr) # for transforming data frames from wide to long and the other way round.
require(multcomp) # for advanced control for multiple testing/Type 1 errors.
require(lattice) # for plots
require(latticeExtra) # for combining lattice plots, etc.
lattice.options(default.theme = standard.theme(color = FALSE)) # black and white
lattice.options(default.args = list(as.table = TRUE)) # better ordering
-require(dplyr) # for working with data frames
-require(tidyr) # for transforming dtaa frames from wide to long and the other way round.
data("fhch2010") # load
fhch <- droplevels(fhch2010[ fhch2010$correct,]) # remove errors

0 comments on commit 1cb0624

Please sign in to comment.