mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2026-06-21 05:59:07 +02:00
major overhaul with new functions. docs are lacking
This commit is contained in:
parent
1fd3911974
commit
04f5bec85c
28 changed files with 874 additions and 81 deletions
24
man/create_html_table.Rd
Normal file
24
man/create_html_table.Rd
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/html_styling.R
|
||||
\name{create_html_table}
|
||||
\alias{create_html_table}
|
||||
\title{Create two-column HTML table for data piping in REDCap instruments}
|
||||
\usage{
|
||||
create_html_table(text, variable)
|
||||
}
|
||||
\arguments{
|
||||
\item{text}{descriptive text}
|
||||
|
||||
\item{variable}{variable to pipe}
|
||||
}
|
||||
\value{
|
||||
character vector
|
||||
}
|
||||
\description{
|
||||
Create two-column HTML table for data piping in REDCap instruments
|
||||
}
|
||||
\examples{
|
||||
create_html_table(text = "Patient ID", variable = c("[cpr]"))
|
||||
create_html_table(text = paste("assessor", 1:2, sep = "_"), variable = c("[cpr]"))
|
||||
# create_html_table(text = c("CPR nummer","Word"), variable = c("[cpr][1]", "[cpr][2]", "[test]"))
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue