Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
18 changes: 10 additions & 8 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,30 @@ Imports:
crayon,
dplyr,
ggplot2,
mice,
ggrepel,
lavaan,
lme4,
margins,
pbkrtest,
purrr,
rlang,
stats,
tidyr,
tibble,
lavaan
utils
Suggests:
margins,
pbkrtest,
devtools,
forcats,
knitr,
lme4,
rmarkdown,
roxygen2,
testthat,
ggrepel,
covr
covr,
mice
VignetteBuilder: knitr
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.2.1
RoxygenNote: 7.2.3
URL: https://github.com/jrosen48/konfound
BugReports: https://github.com/jrosen48/konfound/issues
Depends:
Expand Down
69 changes: 66 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,72 @@ export(konfound)
export(launch_shiny)
export(mkonfound)
export(pkonfound)
export(test_cop)
export(test_sensitivity_ln)
export(tkonfound)
export(tkonfound_fig)
import(dplyr)
import(rlang)
importFrom(rlang,.data)
import(ggplot2)
import(lavaan)
importFrom(broom,glance)
importFrom(broom,tidy)
importFrom(broom.mixed,tidy)
importFrom(crayon,bold)
importFrom(crayon,italic)
importFrom(crayon,underline)
importFrom(dplyr,bind_cols)
importFrom(dplyr,case_when)
importFrom(dplyr,filter)
importFrom(dplyr,mutate)
importFrom(dplyr,pull)
importFrom(dplyr,rename)
importFrom(dplyr,select)
importFrom(dplyr,tibble)
importFrom(ggplot2,aes)
importFrom(ggplot2,aes_string)
importFrom(ggplot2,annotate)
importFrom(ggplot2,element_blank)
importFrom(ggplot2,element_line)
importFrom(ggplot2,element_text)
importFrom(ggplot2,facet_grid)
importFrom(ggplot2,geom_col)
importFrom(ggplot2,geom_curve)
importFrom(ggplot2,geom_histogram)
importFrom(ggplot2,geom_hline)
importFrom(ggplot2,geom_line)
importFrom(ggplot2,geom_point)
importFrom(ggplot2,geom_segment)
importFrom(ggplot2,ggplot)
importFrom(ggplot2,ggtitle)
importFrom(ggplot2,scale_fill_manual)
importFrom(ggplot2,scale_shape_manual)
importFrom(ggplot2,scale_x_continuous)
importFrom(ggplot2,scale_y_continuous)
importFrom(ggplot2,sec_axis)
importFrom(ggplot2,theme)
importFrom(ggplot2,theme_bw)
importFrom(ggplot2,theme_void)
importFrom(ggplot2,xlab)
importFrom(ggplot2,ylab)
importFrom(ggrepel,geom_label_repel)
importFrom(lavaan,parameterEstimates)
importFrom(lavaan,sem)
importFrom(lme4,fixef)
importFrom(lme4,lmer)
importFrom(margins,margins)
importFrom(pbkrtest,get_Lb_ddf)
importFrom(purrr,map)
importFrom(purrr,map2_dfr)
importFrom(purrr,map_dbl)
importFrom(purrr,modify_if)
importFrom(rlang,"!!")
importFrom(rlang,enquo)
importFrom(rlang,quo_name)
importFrom(stats,chisq.test)
importFrom(stats,cor)
importFrom(stats,fisher.test)
importFrom(stats,glm)
importFrom(stats,qt)
importFrom(tibble,tribble)
importFrom(tidyr,gather)
importFrom(utils,browseURL)
importFrom(utils,globalVariables)
5 changes: 3 additions & 2 deletions R/concord1.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#'
#' @docType data
#' @name concord1
#' @references Hamilton, Lawrence C. 1983. Saving water: A causal model of household conservation. Sociological Perspectives 26(4):355-374.
#' @references Hamilton, Lawrence C. 1983. Saving water:
#' A causal model of household conservation. Sociological Perspectives 26(4):355-374.
#' @format A data.frame with 496 rows and 10 variables.
NULL
NULL
Loading