The function ggstatsplot::ggcorrmat
provides a quick way to produce publication-ready correlation matrix (aka correlalogram) plot. The function can also be used for quick data exploration. In addition to the plot, it can also be used to get a correlation coefficient matrix or the associated p-value matrix. Currently, the plot can display Pearson’s r, Spearman’s rho, and Kendall’s tau, and robust correlation coefficient (percentage bend correlation; see ?WRS2::pbcor
). This function is a convenient wrapper around ggcorrplot::ggcorrplot
function with some additional functionality.
We will see examples of how to use this function in this vignette with the gapminder
and diamonds
dataset.
To begin with, here are some instances where you would want to use ggcorrmat
-
ggplot2
Note before: The following demo uses the pipe operator (%>%
), so in case you are not familiar with this operator, here is a good explanation: http://r4ds.had.co.nz/pipes.html
ggcorrmat
For the first example, we will use the gapminder
dataset (available in eponymous package on CRAN) provides values for life expectancy, Gross Domestic Product (GDP) per capita, and population, every five years, from 1952 to 2007, for each of 142 countries and was collected by the Gapminder Foundation. Let’s have a look at the data-
library(gapminder)
library(dplyr)
dplyr::glimpse(x = gapminder)
#> Observations: 1,704
#> Variables: 6
#> $ country <fct> Afghanistan, Afghanistan, Afghanistan, Afghanistan, ...
#> $ continent <fct> Asia, Asia, Asia, Asia, Asia, Asia, Asia, Asia, Asia...
#> $ year <int> 1952, 1957, 1962, 1967, 1972, 1977, 1982, 1987, 1992...
#> $ lifeExp <dbl> 28.801, 30.332, 31.997, 34.020, 36.088, 38.438, 39.8...
#> $ pop <int> 8425333, 9240934, 10267083, 11537966, 13079460, 1488...
#> $ gdpPercap <dbl> 779.4453, 820.8530, 853.1007, 836.1971, 739.9811, 78...
Let’s say we are interested in studying correlation between population of a country, average life expectancy, and GDP per capita across countries only for the year 2007.
The simplest way to get a correlation matrix is to stick to the defaults-
library(ggstatsplot)
# select data only from the year 2007
gapminder_2007 <- dplyr::filter(.data = gapminder::gapminder, year == 2007)
# producing the correlation matrix
ggstatsplot::ggcorrmat(
data = gapminder_2007, # data from which variable is to be taken
cor.vars = lifeExp:gdpPercap # specifying correlation matrix variables
)
This plot can be further modified with additional arguments-
ggstatsplot::ggcorrmat(
data = gapminder_2007, # data from which variable is to be taken
cor.vars = lifeExp:gdpPercap, # specifying correlation matrix variables
cor.vars.names = c("Life Expectancy",
"population",
"GDP (per capita)"),
corr.method = "kendall", # which correlation coefficient is to be computed
lab.col = "red", # label color
ggtheme = ggplot2::theme_light(), # selected ggplot2 theme
ggstatsplot.layer = FALSE, # turn off default ggestatsplot theme overlay
matrix.type = "lower", # correlation matrix structure
colors = NULL, # turning off manual specification of colors
palette = "category10_d3", # choosing a color palette
package = "ggsci", # package to which color palette belongs
title = "Gapminder correlation matrix", # custom title
subtitle = "Source: Gapminder Foundation" # custom subtitle
)
As seen from this correlation matrix, although there is no relationship between population and life expectancy worldwide, at least in 2007, there is a strong positive relationship between GDP, a well-established indicator of a country’s economic performance.
Given that there were only three variables, this doesn’t look that impressive. So let’s work with another example from ggplot2
package: the diamonds
dataset. This dataset contains the prices and other attributes of almost 54,000 diamonds.
Let’s have a look at the data-
library(ggplot2)
dplyr::glimpse(x = ggplot2::diamonds)
#> Observations: 53,940
#> Variables: 10
#> $ carat <dbl> 0.23, 0.21, 0.23, 0.29, 0.31, 0.24, 0.24, 0.26, 0.22, ...
#> $ cut <ord> Ideal, Premium, Good, Premium, Good, Very Good, Very G...
#> $ color <ord> E, E, E, I, J, J, I, H, E, H, J, J, F, J, E, E, I, J, ...
#> $ clarity <ord> SI2, SI1, VS1, VS2, SI2, VVS2, VVS1, SI1, VS2, VS1, SI...
#> $ depth <dbl> 61.5, 59.8, 56.9, 62.4, 63.3, 62.8, 62.3, 61.9, 65.1, ...
#> $ table <dbl> 55, 61, 65, 58, 58, 57, 57, 55, 61, 61, 55, 56, 61, 54...
#> $ price <int> 326, 326, 327, 334, 335, 336, 336, 337, 337, 338, 339,...
#> $ x <dbl> 3.95, 3.89, 4.05, 4.20, 4.34, 3.94, 3.95, 4.07, 3.87, ...
#> $ y <dbl> 3.98, 3.84, 4.07, 4.23, 4.35, 3.96, 3.98, 4.11, 3.78, ...
#> $ z <dbl> 2.43, 2.31, 2.31, 2.63, 2.75, 2.48, 2.47, 2.53, 2.49, ...
Let’s see the correlation matrix between different attributes of the diamond and the price.
# for reproducibility
set.seed(123)
# let's use just 5% of the data to speed it up
ggstatsplot::ggcorrmat(
data = dplyr::sample_frac(tbl = ggplot2::diamonds, size = 0.05),
cor.vars = c(carat, depth:z), # note how the variables are getting selected
cor.vars.names = c(
"carat",
"total depth",
"table",
"price",
"length (in mm)",
"width (in mm)",
"depth (in mm)"
),
hc.order = TRUE # use hierarchical clustering
)
We can make a number of changes to this basic correlation matrix. For example, since we were interested in relationship between price and other attributes, let’s make the price
column to the the first column. Additionally, since we are running 6 correlations that are of a priori interest to us, we can adjust our threshold of significance to (0.05/6 ~ 0.008). Additionally, let’s use a non-parametric correlation coefficient. Please note that it is important to always make sure that the order in which cor.vars
and cor.vars.names
are entered is in sync. Otherwise, wrong column labels will be displayed.
# for reproducibility
set.seed(123)
# let's use just 5% of the data to speed it up
ggstatsplot::ggcorrmat(
data = dplyr::sample_frac(tbl = ggplot2::diamonds, size = 0.05),
cor.vars = c(price, carat, depth:table, x:z), # note how the variables are getting selected
cor.vars.names = c(
"price",
"carat",
"total depth",
"table",
"length (in mm)",
"width (in mm)",
"depth (in mm)"
),
corr.method = "spearman",
sig.level = 0.008,
matrix.type = "lower",
title = "Relationship between diamond attributes and price",
subtitle = "Dataset: Diamonds from ggplot2 package",
colors = c("#0072B2", "#D55E00", "#CC79A7"),
lab.col = "yellow",
lab.size = 6,
pch = 7,
pch.col = "white",
pch.cex = 14,
caption = expression( # changing the default caption text for the plot
paste(italic("Note"), ": Point shape denotes correlation non-significant at p < 0.008; adjusted for 6 comparisons")
)
)
As seen here, and unsurprisingly, the strongest predictor of the diamond price is its carat value, which a unit of mass equal to 200 mg. In other words, the heavier the diamond, the more expensive it is going to be.
ggcorrmat
Another utility of ggcorrmat
is in obtaining matrix of correlation coefficients and their p-values for a quick and dirty exploratory data analysis. For example, for the correlation matrix we just ran, we can get a coefficient matrix and a p-value matrix.
# for reproducibility
set.seed(123)
# to get correlations
ggstatsplot::ggcorrmat(
data = dplyr::sample_frac(tbl = ggplot2::diamonds, size = 0.15),
cor.vars = c(price, carat, depth:table, x:z),
output = "correlations",
corr.method = "robust",
digits = 3
)
#> # A tibble: 7 x 8
#> variable price carat depth table x y z
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 price 1 0.937 -0.002 0.147 0.903 0.904 0.898
#> 2 carat 0.937 1 0.034 0.203 0.983 0.983 0.981
#> 3 depth -0.002 0.034 1 -0.273 -0.011 -0.013 0.098
#> 4 table 0.147 0.203 -0.273 1 0.208 0.203 0.175
#> 5 x 0.903 0.983 -0.011 0.208 1 0.999 0.991
#> 6 y 0.904 0.983 -0.013 0.203 0.999 1 0.991
#> 7 z 0.898 0.981 0.098 0.175 0.991 0.991 1
# to get p-values
ggstatsplot::ggcorrmat(
data = dplyr::sample_frac(tbl = ggplot2::diamonds, size = 0.15),
cor.vars = c(price, carat, depth:table, x:z),
output = "p-values",
corr.method = "robust",
digits = 3
)
#> # A tibble: 7 x 8
#> variable price carat depth table x y z
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 price 0 0 0.185 0 0 0 0
#> 2 carat 0 0 0.0000490 0 0 0 0
#> 3 depth 0.185 0.0000490 0 0 0.885 0.696 0
#> 4 table 0 0 0 0 0 0 0
#> 5 x 0 0 0.885 0 0 0 0
#> 6 y 0 0 0.696 0 0 0 0
#> 7 z 0 0 0 0 0 0 0
grouped_ggcorrmat
What if we want to do the same analysis separately for each quality of the diamond cut
(Fair, Good, Very Good, Premium, Ideal)? In that case, we will have to either write a for
loop or use purrr
, none of which seem like an exciting prospect.
ggstatsplot
provides a special helper function for such instances: grouped_ggcorrmat
. This is merely a wrapper function around ggstatsplot::combine_plots
. It applies ggcorrmat
across all levels of a specified grouping variable and then combines list of individual plots into a single plot. Note that the grouping variable can be anything: conditions in a given study, groups in a study sample, different studies, etc.
# for reproducibility
set.seed(123)
# let's use just 5% of the data to speed it up
ggstatsplot::grouped_ggcorrmat(
# arguments relevant for ggstatsplot::ggcorrmat
data = dplyr::sample_frac(tbl = ggplot2::diamonds, size = 0.05),
corr.method = "r", # percentage bend correlation coefficient
beta = 0.2, # bending constant
p.adjust.method = "holm", # method to adjust p-values for multiple comparisons
grouping.var = cut,
title.prefix = "Quality of cut",
cor.vars = c(carat, depth:z),
cor.vars.names = c(
"carat",
"total depth",
"table",
"price",
"length (in mm)",
"width (in mm)",
"depth (in mm)"
),
lab.size = 3.5,
# arguments relevant for ggstatsplot::combine_plots
title.text = "Relationship between diamond attributes and price across cut",
title.size = 16,
title.color = "red",
caption.text = "Dataset: Diamonds from ggplot2 package",
caption.size = 14,
caption.color = "blue",
labels = c("(a)","(b)","(c)","(d)","(e)"),
nrow = 3,
ncol = 2
)
#> Note: In the correlation matrix, the upper triangle is based on p-values adjusted for multiple comparisons,
#> while the lower triangle is based on unadjusted p-values.
#> Note: In the correlation matrix, the upper triangle is based on p-values adjusted for multiple comparisons,
#> while the lower triangle is based on unadjusted p-values.
#> Note: In the correlation matrix, the upper triangle is based on p-values adjusted for multiple comparisons,
#> while the lower triangle is based on unadjusted p-values.
#> Note: In the correlation matrix, the upper triangle is based on p-values adjusted for multiple comparisons,
#> while the lower triangle is based on unadjusted p-values.
#> Note: In the correlation matrix, the upper triangle is based on p-values adjusted for multiple comparisons,
#> while the lower triangle is based on unadjusted p-values.
#> Warning: The output from `grouped_` functions are not `ggplot` objects and therefore can't be further modified with `ggplot2` functions.
Note that this function also makes it easy to run the same correlation matrix across different levels of a factor/grouping variable. For example, if we wanted to get the same correlation coefficient matrix for color
of the diamond, we can do the following-
# for reproducibility
set.seed(123)
# let's use just 5% of the data to speed it up
ggstatsplot::grouped_ggcorrmat(
data = dplyr::sample_frac(tbl = ggplot2::diamonds, size = 0.05),
grouping.var = cut,
cor.vars = c(price, carat, depth:table, x:z),
output = "correlations",
corr.method = "robust",
digits = 3
)
#> # A tibble: 35 x 9
#> Group variable price carat depth table x y z
#> <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 Fair price 1 0.882 0.065 0.011 0.789 0.8 0.788
#> 2 Fair carat 0.882 1 0.109 -0.003 0.93 0.929 0.92
#> 3 Fair depth 0.065 0.109 1 -0.683 0.009 0.01 0.358
#> 4 Fair table 0.011 -0.003 -0.683 1 0.018 0.006 -0.221
#> 5 Fair x 0.789 0.93 0.009 0.018 1 0.997 0.931
#> 6 Fair y 0.8 0.929 0.01 0.006 0.997 1 0.931
#> 7 Fair z 0.788 0.92 0.358 -0.221 0.931 0.931 1
#> 8 Good price 1 0.933 -0.026 0.095 0.915 0.918 0.911
#> 9 Good carat 0.933 1 -0.012 0.15 0.986 0.986 0.984
#> 10 Good depth -0.026 -0.012 1 -0.506 -0.11 -0.109 0.105
#> # ... with 25 more rows
As this example illustrates, there is a minimal coding overhead to explore correlations in your dataset with the grouped_ggcorrmat
function.
ggcorrmat
+ purrr
Although grouped_
function is good for quickly exploring the data, it reduces the flexibility with which this function can be used. This is the because the common parameters used are applied to plots corresponding to all levels of the grouping variable and there is no way to customize the arguments for different levels of the grouping variable. We will see how this can be done using the purrr
package in the associated vignette: https://indrajeetpatil.github.io/ggstatsplot/articles/purrr_examples.html
If you find any bugs or have any suggestions/remarks, please file an issue on GitHub
: https://github.com/IndrajeetPatil/ggstatsplot/issues
Summarizing session information for reproducibility.
options(width = 200)
devtools::session_info()
#> - Session info ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#> setting value
#> version R version 3.5.1 (2018-07-02)
#> os Windows 10 x64
#> system x86_64, mingw32
#> ui RTerm
#> language (EN)
#> collate C
#> ctype English_United States.1252
#> tz America/New_York
#> date 2018-09-30
#>
#> - Packages -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#> package * version date lib source
#> abind 1.4-5 2016-07-21 [2] CRAN (R 3.5.0)
#> assertthat 0.2.0 2017-04-11 [2] CRAN (R 3.5.0)
#> backports 1.1.2 2017-12-13 [2] CRAN (R 3.5.0)
#> base64enc 0.1-3 2015-07-28 [2] CRAN (R 3.5.0)
#> BayesFactor 0.9.12-4.2 2018-05-19 [2] CRAN (R 3.5.0)
#> bayesplot 1.6.0 2018-08-02 [2] CRAN (R 3.5.1)
#> bindr 0.1.1 2018-03-13 [2] CRAN (R 3.5.0)
#> bindrcpp * 0.2.2 2018-03-29 [2] CRAN (R 3.5.0)
#> boot 1.3-20 2017-08-06 [3] CRAN (R 3.5.1)
#> broom 0.5.0.9001 2018-09-16 [2] Github (tidyverse/broom@1e65668)
#> broom.mixed 0.2.2 2018-09-26 [2] Github (bbolker/broom.mixed@9feb131)
#> callr 3.0.0 2018-08-24 [2] CRAN (R 3.5.1)
#> car * 3.0-2 2018-08-23 [2] CRAN (R 3.5.1)
#> carData * 3.0-1 2018-03-28 [2] CRAN (R 3.5.0)
#> cellranger 1.1.0 2016-07-27 [2] CRAN (R 3.5.0)
#> cli 1.0.1 2018-09-25 [2] CRAN (R 3.5.1)
#> cluster 2.0.7-1 2018-04-13 [3] CRAN (R 3.5.1)
#> coda 0.19-1 2016-12-08 [2] CRAN (R 3.5.0)
#> codetools 0.2-15 2016-10-05 [3] CRAN (R 3.5.1)
#> coin 1.2-2 2017-11-28 [2] CRAN (R 3.5.0)
#> colorspace 1.3-2 2016-12-14 [2] CRAN (R 3.5.0)
#> cowplot 0.9.99 2018-08-23 [2] Github (wilkelab/cowplot@374c3e9)
#> crayon 1.3.4 2018-09-26 [2] Github (r-lib/crayon@3e751fb)
#> curl 3.2 2018-03-28 [2] CRAN (R 3.5.0)
#> data.table 1.11.8 2018-09-30 [2] CRAN (R 3.5.1)
#> debugme 1.1.0 2017-10-22 [2] CRAN (R 3.5.0)
#> DEoptimR 1.0-8 2016-11-19 [2] CRAN (R 3.5.0)
#> desc 1.2.0 2018-05-01 [2] CRAN (R 3.5.0)
#> devtools 1.13.6.9000 2018-09-23 [2] Github (r-lib/devtools@74df201)
#> digest 0.6.17 2018-09-12 [2] CRAN (R 3.5.1)
#> dplyr * 0.7.6 2018-06-29 [2] CRAN (R 3.5.0)
#> effsize 0.7.1 2017-03-21 [2] CRAN (R 3.5.0)
#> emmeans 1.2.4 2018-09-22 [2] CRAN (R 3.5.1)
#> estimability 1.3 2018-02-11 [2] CRAN (R 3.5.0)
#> evaluate 0.11 2018-07-17 [2] CRAN (R 3.5.1)
#> exact2x2 1.6.3 2018-07-27 [2] CRAN (R 3.5.1)
#> exactci 1.3-3 2017-10-02 [2] CRAN (R 3.5.0)
#> fansi 0.3.0 2018-08-13 [2] CRAN (R 3.5.1)
#> fit.models 0.5-14 2017-04-06 [2] CRAN (R 3.5.0)
#> forcats 0.3.0 2018-02-19 [2] CRAN (R 3.5.0)
#> foreign 0.8-70 2017-11-28 [3] CRAN (R 3.5.1)
#> fs 1.2.6 2018-08-23 [2] CRAN (R 3.5.1)
#> gapminder * 0.3.0 2017-10-31 [2] CRAN (R 3.5.0)
#> generics 0.0.1.9000 2018-09-16 [2] Github (r-lib/generics@aaa6122)
#> ggcorrplot 0.1.2 2018-09-11 [2] CRAN (R 3.5.1)
#> ggExtra 0.8 2018-08-14 [2] Github (daattali/ggExtra@76d1618)
#> ggplot2 * 3.0.0.9000 2018-09-26 [2] Github (tidyverse/ggplot2@e9f7ded)
#> ggrepel 0.8.0.9000 2018-09-09 [2] Github (slowkow/ggrepel@91877ca)
#> ggridges 0.5.1 2018-09-27 [2] CRAN (R 3.5.1)
#> ggstatsplot * 0.0.6 2018-09-30 [1] local
#> ggthemes 4.0.1 2018-08-24 [2] CRAN (R 3.5.1)
#> glmmTMB 0.2.2.0 2018-07-03 [2] CRAN (R 3.5.1)
#> glue * 1.3.0 2018-09-17 [2] Github (tidyverse/glue@4e74901)
#> gtable 0.2.0 2016-02-26 [2] CRAN (R 3.5.0)
#> gtools 3.8.1 2018-06-26 [2] CRAN (R 3.5.0)
#> haven 1.1.2 2018-06-27 [2] CRAN (R 3.5.0)
#> hms 0.4.2 2018-03-10 [2] CRAN (R 3.5.0)
#> htmldeps 0.1.1 2018-09-17 [2] Github (rstudio/htmldeps@c1023e0)
#> htmltools 0.3.6 2017-04-28 [2] CRAN (R 3.5.0)
#> httpuv 1.4.5 2018-07-19 [2] CRAN (R 3.5.1)
#> jmv 0.9.4 2018-09-29 [2] Github (jamovi/jmv@7dac133)
#> jmvcore 0.9.4 2018-09-17 [2] CRAN (R 3.5.1)
#> knitr 1.20.12 2018-08-13 [2] local
#> labeling 0.3 2014-08-23 [2] CRAN (R 3.5.0)
#> later 0.7.5 2018-09-18 [2] CRAN (R 3.5.1)
#> lattice 0.20-35 2017-03-25 [3] CRAN (R 3.5.1)
#> lazyeval 0.2.1 2017-10-29 [2] CRAN (R 3.5.0)
#> lme4 * 1.1-18-1 2018-08-17 [2] CRAN (R 3.5.1)
#> magrittr 1.5 2014-11-22 [2] CRAN (R 3.5.0)
#> MASS 7.3-50 2018-04-30 [3] CRAN (R 3.5.1)
#> Matrix * 1.2-14 2018-04-13 [3] CRAN (R 3.5.1)
#> MatrixModels 0.4-1 2015-08-22 [2] CRAN (R 3.5.0)
#> mc2d 0.1-18 2017-03-06 [2] CRAN (R 3.5.0)
#> memoise 1.1.0 2017-04-21 [2] CRAN (R 3.5.0)
#> mime 0.5 2016-07-07 [2] CRAN (R 3.5.0)
#> miniUI 0.1.1.1 2018-05-18 [2] CRAN (R 3.5.0)
#> minqa 1.2.4 2014-10-09 [2] CRAN (R 3.5.0)
#> mnormt 1.5-5 2016-10-15 [2] CRAN (R 3.5.0)
#> modelr 0.1.2 2018-05-11 [2] CRAN (R 3.5.0)
#> modeltools 0.2-22 2018-07-16 [2] CRAN (R 3.5.1)
#> multcomp 1.4-8 2017-11-08 [2] CRAN (R 3.5.0)
#> munsell 0.5.0 2018-06-12 [2] CRAN (R 3.5.0)
#> mvtnorm 1.0-8 2018-05-31 [2] CRAN (R 3.5.0)
#> nlme 3.1-137 2018-04-07 [3] CRAN (R 3.5.1)
#> nloptr 1.0.4 2017-08-22 [2] CRAN (R 3.5.0)
#> numDeriv 2016.8-1 2016-08-27 [2] CRAN (R 3.5.0)
#> openxlsx 4.1.0 2018-05-26 [2] CRAN (R 3.5.0)
#> ordinal 2018.8-25 2018-08-25 [2] CRAN (R 3.5.1)
#> paletteer 0.1.0 2018-07-10 [2] CRAN (R 3.5.1)
#> pbapply 1.3-4 2018-01-10 [2] CRAN (R 3.5.0)
#> pbkrtest 0.4-7 2017-03-15 [2] CRAN (R 3.5.0)
#> pcaPP 1.9-73 2018-01-14 [2] CRAN (R 3.5.0)
#> pillar 1.3.0.9000 2018-09-21 [2] Github (r-lib/pillar@ccbdef4)
#> pkgbuild 1.0.1.9000 2018-09-23 [2] Github (r-lib/pkgbuild@3919d9c)
#> pkgconfig 2.0.2 2018-08-16 [2] CRAN (R 3.5.1)
#> pkgload 1.0.0 2018-09-17 [2] Github (r-lib/pkgload@7771d78)
#> plyr * 1.8.4 2016-06-08 [2] CRAN (R 3.5.0)
#> prediction 0.3.6 2018-05-22 [2] CRAN (R 3.5.0)
#> prettyunits 1.0.2 2015-07-13 [2] CRAN (R 3.5.0)
#> processx 3.2.0 2018-08-16 [2] CRAN (R 3.5.1)
#> promises 1.0.1 2018-04-13 [2] CRAN (R 3.5.0)
#> ps 1.1.0 2018-08-10 [2] CRAN (R 3.5.1)
#> psych 1.8.4 2018-05-06 [2] CRAN (R 3.5.0)
#> purrr * 0.2.5 2018-05-29 [2] CRAN (R 3.5.0)
#> purrrlyr 0.0.3 2018-05-29 [2] CRAN (R 3.5.0)
#> pwr 1.2-2 2018-03-03 [2] CRAN (R 3.5.0)
#> R6 2.2.2 2017-06-17 [2] CRAN (R 3.5.0)
#> Rcpp 0.12.18 2018-07-23 [2] CRAN (R 3.5.1)
#> readxl 1.1.0 2018-04-20 [2] CRAN (R 3.5.0)
#> remotes 1.1.1.9000 2018-09-23 [2] Github (r-lib/remotes@5a07ad2)
#> reshape 0.8.7 2017-08-06 [2] CRAN (R 3.5.0)
#> reshape2 1.4.3 2017-12-11 [2] CRAN (R 3.5.0)
#> rio 0.5.10 2018-03-29 [2] CRAN (R 3.5.0)
#> rjson 0.2.20 2018-06-08 [2] CRAN (R 3.5.0)
#> rlang 0.2.2 2018-08-16 [2] CRAN (R 3.5.1)
#> rmarkdown 1.10.13 2018-09-17 [2] Github (rstudio/rmarkdown@df4ec91)
#> robust 0.4-18 2017-04-27 [2] CRAN (R 3.5.0)
#> robustbase 0.93-3 2018-09-21 [2] CRAN (R 3.5.1)
#> rprojroot 1.3-2 2018-01-03 [2] CRAN (R 3.5.0)
#> rrcov 1.4-4 2018-05-24 [2] CRAN (R 3.5.0)
#> sandwich 2.5-0 2018-08-17 [2] CRAN (R 3.5.1)
#> scales 1.0.0 2018-08-09 [2] CRAN (R 3.5.1)
#> sessioninfo 1.1.0 2018-09-25 [2] CRAN (R 3.5.1)
#> shiny 1.1.0 2018-05-17 [2] CRAN (R 3.5.0)
#> sjlabelled 1.0.14 2018-09-12 [2] CRAN (R 3.5.1)
#> sjmisc 2.7.5 2018-09-13 [2] CRAN (R 3.5.1)
#> sjstats 0.17.0 2018-08-20 [2] CRAN (R 3.5.1)
#> snakecase 0.9.2 2018-08-14 [2] CRAN (R 3.5.1)
#> ssanv 1.1 2015-06-23 [2] CRAN (R 3.5.0)
#> stringdist 0.9.5.1 2018-06-08 [2] CRAN (R 3.5.0)
#> stringi 1.2.4 2018-07-20 [2] CRAN (R 3.5.1)
#> stringr 1.3.1 2018-05-10 [2] CRAN (R 3.5.0)
#> survival 2.42-3 2018-04-16 [3] CRAN (R 3.5.1)
#> testthat 2.0.0 2017-12-13 [2] CRAN (R 3.5.0)
#> TH.data 1.0-9 2018-07-10 [2] CRAN (R 3.5.1)
#> tibble 1.4.2 2018-01-22 [2] CRAN (R 3.5.1)
#> tidyr 0.8.1 2018-05-18 [2] CRAN (R 3.5.0)
#> tidyselect 0.2.4 2018-02-26 [2] CRAN (R 3.5.0)
#> TMB 1.7.14 2018-06-23 [2] CRAN (R 3.5.0)
#> ucminf 1.1-4 2016-08-18 [2] CRAN (R 3.5.0)
#> usethis 1.4.0.9000 2018-09-23 [2] Github (r-lib/usethis@1e3c6a6)
#> utf8 1.1.4 2018-05-24 [2] CRAN (R 3.5.0)
#> withr 2.1.2 2018-03-15 [2] CRAN (R 3.5.0)
#> WRS2 0.10-0 2018-06-15 [2] CRAN (R 3.5.0)
#> xfun 0.3 2018-07-06 [2] CRAN (R 3.5.1)
#> xtable 1.8-3 2018-08-29 [2] CRAN (R 3.5.1)
#> yaml 2.2.0 2018-07-25 [2] CRAN (R 3.5.1)
#> zip 1.0.0 2017-04-25 [2] CRAN (R 3.5.0)
#> zoo 1.8-4 2018-09-19 [2] CRAN (R 3.5.1)
#>
#> [1] C:/Users/inp099/AppData/Local/Temp/RtmpeYGk4z/Rinst52f07dc24754
#> [2] C:/Users/inp099/Documents/R/win-library/3.5
#> [3] C:/Program Files/R/R-3.5.1/library