FreesearchR
@@ -150,10 +150,112 @@ filtering options.There are a number of plotting options to visualise different aspects of the data.
Below are the available plot types listed.
- - +Data type | +Plot type | +Description | +
---|---|---|
continuous | +Violin plot | +A modern alternative to the classic boxplot to +visualise data distribution | +
continuous | +Scatter plot | +A classic way of showing the association between to +variables | +
continuous | +Box plot | +A classic way to plot data distribution by groups | +
dichotomous | +Stacked horizontal bars | +A classical way of visualising the distribution of an +ordinal scale like the modified Ranking Scale and known as Grotta +bars | +
dichotomous | +Violin plot | +A modern alternative to the classic boxplot to +visualise data distribution | +
dichotomous | +Sankey plot | +A way of visualising change between groups | +
dichotomous | +Box plot | +A classic way to plot data distribution by groups | +
dichotomous | +Euler diagram | +Generate area-proportional Euler diagrams to display +set relationships | +
ordinal | +Stacked horizontal bars | +A classical way of visualising the distribution of an +ordinal scale like the modified Ranking Scale and known as Grotta +bars | +
ordinal | +Violin plot | +A modern alternative to the classic boxplot to +visualise data distribution | +
ordinal | +Sankey plot | +A way of visualising change between groups | +
ordinal | +Box plot | +A classic way to plot data distribution by groups | +
categorical | +Stacked horizontal bars | +A classical way of visualising the distribution of an +ordinal scale like the modified Ranking Scale and known as Grotta +bars | +
categorical | +Violin plot | +A modern alternative to the classic boxplot to +visualise data distribution | +
categorical | +Sankey plot | +A way of visualising change between groups | +
categorical | +Box plot | +A classic way to plot data distribution by groups | +
Regression
diff --git a/news/index.html b/news/index.html
index 71c9c89..cadebe3 100644
--- a/news/index.html
+++ b/news/index.html
@@ -38,8 +38,8 @@
FreesearchR 25.4.2
Polished and simplified data import module including a much improved REDCap import module.
--
-CHANGE
default_parsing()
now ensure unique variable names.
+CHANGE default_parsing()
now ensure unique variable names.
+NEW Working code output for all major modules including import, modifications, filter, evaluation, plotting and regression.
FreesearchR 25.4.1
diff --git a/pkgdown.yml b/pkgdown.yml
index 5a357df..133b824 100644
--- a/pkgdown.yml
+++ b/pkgdown.yml
@@ -3,7 +3,7 @@ pkgdown: 2.1.1
pkgdown_sha: ~
articles:
FreesearchR: FreesearchR.html
-last_built: 2025-04-08T12:20Z
+last_built: 2025-04-09T10:49Z
urls:
reference: https://agdamsbo.github.io/FreesearchR/reference
article: https://agdamsbo.github.io/FreesearchR/articles
diff --git a/reference/create_overview_datagrid.html b/reference/create_overview_datagrid.html
index 6e4b4a0..356e0a5 100644
--- a/reference/create_overview_datagrid.html
+++ b/reference/create_overview_datagrid.html
@@ -42,7 +42,7 @@
diff --git a/reference/data-summary.html b/reference/data-summary.html
index 8542983..2aaf96b 100644
--- a/reference/data-summary.html
+++ b/reference/data-summary.html
@@ -68,7 +68,7 @@
...
-arguments passed to toastui::datagrid
+arguments passed to create_overview_datagrid
diff --git a/reference/expression_string.html b/reference/expression_string.html
new file mode 100644
index 0000000..0c63a41
--- /dev/null
+++ b/reference/expression_string.html
@@ -0,0 +1,89 @@
+
+Deparses expression as string, substitutes native pipe and adds assign — expression_string • FreesearchR
+ Skip to contents
+
+
+
+
+
+
+ Deparses expression as string, substitutes native pipe and adds assign
+ Source: R/helpers.R
+ expression_string.Rd
+
+
+
+ Deparses expression as string, substitutes native pipe and adds assign
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/reference/getfun.html b/reference/getfun.html
index 40b2c53..1fe47d0 100644
--- a/reference/getfun.html
+++ b/reference/getfun.html
@@ -133,7 +133,7 @@
#> z$qr <- NULL
#> z
#> }
-#> <bytecode: 0x55a0c02c5460>
+#> <bytecode: 0x559101e5a0d0>
#> <environment: namespace:stats>
diff --git a/reference/index.html b/reference/index.html
index 52f6d95..165ae14 100644
--- a/reference/index.html
+++ b/reference/index.html
@@ -209,6 +209,12 @@
Drop empty events from REDCap export
-
+
expression_string()
+
+
+ - Deparses expression as string, substitutes native pipe and adds assign
+
-
+
factorize()
@@ -359,6 +365,12 @@
- Shiny UI module to load a data file
-
+
merge_expression()
+
+
+ - Merge list of expressions
+
-
+
merge_long()
diff --git a/reference/merge_expression.html b/reference/merge_expression.html
new file mode 100644
index 0000000..31effa5
--- /dev/null
+++ b/reference/merge_expression.html
@@ -0,0 +1,89 @@
+
+Merge list of expressions — merge_expression • FreesearchR
+ Skip to contents
+
+
+
+
+
+
+
+ Merge list of expressions
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/reference/regression_model.html b/reference/regression_model.html
index 1dd5f2d..a26835c 100644
--- a/reference/regression_model.html
+++ b/reference/regression_model.html
@@ -931,6 +931,7 @@ argsstring2list() or list of arguments. Default is NULL.
)
ls <- regression_model_list(data = default_parsing(mtcars), outcome.str = "cyl", fun.descr = "Ordinal logistic regression model")
summary(ls$model)
+ls <- regression_model_list(data = default_parsing(mtcars), outcome.str = "mpg", fun.descr = "Linear regression model")
ls <- regression_model_list(data = default_parsing(gtsummary::trial), outcome.str = "trt", fun.descr = "Logistic regression model")
tbl <- gtsummary::tbl_regression(ls$model, exponentiate = TRUE)
@@ -940,7 +941,7 @@ argsstring2list() or list of arguments. Default is NULL.
outcome.str = "trt",
fun = "stats::glm",
formula.str = "{outcome.str}~.",
- args.list = list(family = stats::binomial(link = "logit"))
+ args.list = list(family = "binomial")
)
tbl2 <- gtsummary::tbl_regression(m, exponentiate = TRUE)
broom::tidy(ls$model)
@@ -956,6 +957,7 @@ argsstring2list() or list of arguments. Default is NULL.
lapply(broom::tidy) |>
dplyr::bind_rows()
ms <- regression_model_uv_list(data = default_parsing(mtcars), outcome.str = "mpg", fun.descr = "Linear regression model")
+ms$code
lapply(ms$model, broom::tidy) |> dplyr::bind_rows()
} # }
FreesearchR 25.4.2
Polished and simplified data import module including a much improved REDCap import module.
--
-CHANGE
default_parsing()
now ensure unique variable names.
+ CHANGE
default_parsing()
now ensure unique variable names.
+NEW Working code output for all major modules including import, modifications, filter, evaluation, plotting and regression.
FreesearchR 25.4.1
diff --git a/pkgdown.yml b/pkgdown.yml index 5a357df..133b824 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -3,7 +3,7 @@ pkgdown: 2.1.1 pkgdown_sha: ~ articles: FreesearchR: FreesearchR.html -last_built: 2025-04-08T12:20Z +last_built: 2025-04-09T10:49Z urls: reference: https://agdamsbo.github.io/FreesearchR/reference article: https://agdamsbo.github.io/FreesearchR/articles diff --git a/reference/create_overview_datagrid.html b/reference/create_overview_datagrid.html index 6e4b4a0..356e0a5 100644 --- a/reference/create_overview_datagrid.html +++ b/reference/create_overview_datagrid.html @@ -42,7 +42,7 @@arguments passed to toastui::datagrid
arguments passed to create_overview_datagrid
Deparses expression as string, substitutes native pipe and adds assign
+ Source:R/helpers.R
+ expression_string.Rd
Deparses expression as string, substitutes native pipe and adds assign
+expression_string()
+
+ factorize()
merge_expression()
+
+ merge_long()
Merge list of expressions
+