mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
improved import ui and redcap import with status messages
This commit is contained in:
parent
3e49868ff4
commit
2800177fc5
13 changed files with 427 additions and 165 deletions
24
man/if_not_missing.Rd
Normal file
24
man/if_not_missing.Rd
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/helpers.R
|
||||
\name{if_not_missing}
|
||||
\alias{if_not_missing}
|
||||
\title{Return if available}
|
||||
\usage{
|
||||
if_not_missing(data, default = NULL)
|
||||
}
|
||||
\arguments{
|
||||
\item{data}{vector}
|
||||
|
||||
\item{default}{assigned value for missings}
|
||||
}
|
||||
\value{
|
||||
vector
|
||||
}
|
||||
\description{
|
||||
Return if available
|
||||
}
|
||||
\examples{
|
||||
NULL |> if_not_missing("new")
|
||||
c(2,"a",NA) |> if_not_missing()
|
||||
"See" |> if_not_missing()
|
||||
}
|
||||
|
|
@ -16,6 +16,17 @@
|
|||
\item{x}{(\code{tbl_regression}, \code{tbl_uvregression})\cr
|
||||
A 'tbl_regression' or 'tbl_uvregression' object}
|
||||
|
||||
\item{plot_ref}{(scalar \code{logical})\cr
|
||||
plot reference values}
|
||||
|
||||
\item{remove_header_rows}{(scalar \code{logical})\cr
|
||||
logical indicating whether to remove header rows
|
||||
for categorical variables. Default is \code{TRUE}}
|
||||
|
||||
\item{remove_reference_rows}{(scalar \code{logical})\cr
|
||||
logical indicating whether to remove reference rows
|
||||
for categorical variables. Default is \code{FALSE}.}
|
||||
|
||||
\item{...}{arguments passed to \code{ggstats::ggcoef_plot(...)}}
|
||||
}
|
||||
\value{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
\alias{redcap_demo_app}
|
||||
\title{Shiny module to browser and export REDCap data}
|
||||
\usage{
|
||||
m_redcap_readUI(id, title = TRUE)
|
||||
m_redcap_readUI(id, title = TRUE, url = NULL)
|
||||
|
||||
m_redcap_readServer(id)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue