mirror of
https://github.com/agdamsbo/daDoctoR.git
synced 2024-11-23 20:30:21 +01:00
new function
This commit is contained in:
parent
90819eecaa
commit
c029a09d07
@ -1,6 +1,6 @@
|
|||||||
Package: daDoctoR
|
Package: daDoctoR
|
||||||
Title: Functions For Health Research
|
Title: Functions For Health Research
|
||||||
Version: 0.21.2
|
Version: 0.21.3
|
||||||
Year: 2021
|
Year: 2021
|
||||||
Author: Andreas Gammelgaard Damsbo <agdamsbo@pm.me>
|
Author: Andreas Gammelgaard Damsbo <agdamsbo@pm.me>
|
||||||
Maintainer: Andreas Gammelgaard Damsbo <agdamsbo@pm.me>
|
Maintainer: Andreas Gammelgaard Damsbo <agdamsbo@pm.me>
|
||||||
|
@ -20,6 +20,7 @@ export(plot_biv_olr)
|
|||||||
export(plot_ord_odds)
|
export(plot_ord_odds)
|
||||||
export(print_reg_diff_bin)
|
export(print_reg_diff_bin)
|
||||||
export(quantile_cut)
|
export(quantile_cut)
|
||||||
|
export(redcap_clean_csv)
|
||||||
export(rep_biv)
|
export(rep_biv)
|
||||||
export(rep_epi_tests)
|
export(rep_epi_tests)
|
||||||
export(rep_glm)
|
export(rep_glm)
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#' Using base/stats functions cut() and quantile().
|
#' Using base/stats functions cut() and quantile().
|
||||||
#' @param x Variable to cut.
|
#' @param x Variable to cut.
|
||||||
#' @param groups Number of groups.
|
#' @param groups Number of groups.
|
||||||
|
#' @param y alternative vector to draw quantile cuts from. Limits has to be within x. Default is NULL.
|
||||||
#' @param na.rm Remove NA's. Default is TRUE.
|
#' @param na.rm Remove NA's. Default is TRUE.
|
||||||
#' @param group.names Names of groups to split to. Default is NULL, giving intervals as names.
|
#' @param group.names Names of groups to split to. Default is NULL, giving intervals as names.
|
||||||
#' @param ordered.f Set resulting vector as ordered. Default is FALSE.
|
#' @param ordered.f Set resulting vector as ordered. Default is FALSE.
|
||||||
@ -12,6 +13,16 @@
|
|||||||
#' aa <- as.numeric(sample(1:1000,2000,replace = TRUE))
|
#' aa <- as.numeric(sample(1:1000,2000,replace = TRUE))
|
||||||
#' summary(quantile_cut(aa,groups=4)) ## Cuts quartiles
|
#' summary(quantile_cut(aa,groups=4)) ## Cuts quartiles
|
||||||
|
|
||||||
quantile_cut<-function(x,groups,na.rm=TRUE,group.names=NULL,ordered.f=FALSE){
|
quantile_cut<-function (x, groups,y=NULL, na.rm = TRUE, group.names = NULL, ordered.f = FALSE)
|
||||||
cut(x, quantile(x,probs = seq(0, 1, 1/groups), na.rm = na.rm,names = TRUE, type = 7),include.lowest = TRUE,labels = group.names,ordered_result = ordered.f)
|
{
|
||||||
|
if (!is.null(y)){
|
||||||
|
q<-quantile(y, probs = seq(0, 1, 1/groups), na.rm = na.rm, names = TRUE, type = 7)
|
||||||
|
|
||||||
|
}
|
||||||
|
if (is.null(y)){
|
||||||
|
q<-quantile(x, probs = seq(0, 1, 1/groups), na.rm = na.rm, names = TRUE, type = 7)
|
||||||
|
}
|
||||||
|
d<-cut(x, q, include.lowest = TRUE, labels = group.names,
|
||||||
|
ordered_result = ordered.f)
|
||||||
|
return(list(d,q))
|
||||||
}
|
}
|
||||||
|
23
R/redcap_clean_csv.R
Normal file
23
R/redcap_clean_csv.R
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#' Easily format csv-files for instrument opload to REDCap
|
||||||
|
#'
|
||||||
|
#' Both Numbers and Excel lacks detailed formatting options for csv-export.
|
||||||
|
#' This function formats csv-files for ReDCap instruments after export from said programs.
|
||||||
|
#' @param folder Path to desired folder.
|
||||||
|
#' @param name Desired file name.
|
||||||
|
#' @keywords redcap
|
||||||
|
#' @export
|
||||||
|
#' @examples
|
||||||
|
#' csv_redcap_cleaner("/Users/user/REDCap_conversion")
|
||||||
|
|
||||||
|
redcap_clean_csv<-function(folder,name="instrument"){
|
||||||
|
f<-folder
|
||||||
|
fn<-name
|
||||||
|
pt<-paste0(name,".csv")
|
||||||
|
|
||||||
|
p<-list.files(f, pattern=pt, full.names=TRUE)
|
||||||
|
d<-read.csv(p, header=FALSE, sep=";")
|
||||||
|
nc<-unlist(strsplit(p, "[.]"))
|
||||||
|
n<-paste0(f,"/done/",fn,".csv")
|
||||||
|
colnames(d)<-NULL
|
||||||
|
write.csv(d,n,na="",row.names = FALSE)
|
||||||
|
}
|
@ -4,13 +4,22 @@
|
|||||||
\alias{quantile_cut}
|
\alias{quantile_cut}
|
||||||
\title{Easy function for splitting numeric variable in quantiles}
|
\title{Easy function for splitting numeric variable in quantiles}
|
||||||
\usage{
|
\usage{
|
||||||
quantile_cut(x, groups, na.rm = TRUE, group.names = NULL, ordered.f = FALSE)
|
quantile_cut(
|
||||||
|
x,
|
||||||
|
groups,
|
||||||
|
y = NULL,
|
||||||
|
na.rm = TRUE,
|
||||||
|
group.names = NULL,
|
||||||
|
ordered.f = FALSE
|
||||||
|
)
|
||||||
}
|
}
|
||||||
\arguments{
|
\arguments{
|
||||||
\item{x}{Variable to cut.}
|
\item{x}{Variable to cut.}
|
||||||
|
|
||||||
\item{groups}{Number of groups.}
|
\item{groups}{Number of groups.}
|
||||||
|
|
||||||
|
\item{y}{alternative vector to draw quantile cuts from. Limits has to be within x. Default is NULL.}
|
||||||
|
|
||||||
\item{na.rm}{Remove NA's. Default is TRUE.}
|
\item{na.rm}{Remove NA's. Default is TRUE.}
|
||||||
|
|
||||||
\item{group.names}{Names of groups to split to. Default is NULL, giving intervals as names.}
|
\item{group.names}{Names of groups to split to. Default is NULL, giving intervals as names.}
|
||||||
|
21
man/redcap_clean_csv.Rd
Normal file
21
man/redcap_clean_csv.Rd
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
% Generated by roxygen2: do not edit by hand
|
||||||
|
% Please edit documentation in R/redcap_clean_csv.R
|
||||||
|
\name{redcap_clean_csv}
|
||||||
|
\alias{redcap_clean_csv}
|
||||||
|
\title{Easily format csv-files for instrument opload to REDCap}
|
||||||
|
\usage{
|
||||||
|
redcap_clean_csv(folder, name = "instrument")
|
||||||
|
}
|
||||||
|
\arguments{
|
||||||
|
\item{folder}{Path to desired folder.}
|
||||||
|
|
||||||
|
\item{name}{Desired file name.}
|
||||||
|
}
|
||||||
|
\description{
|
||||||
|
Both Numbers and Excel lacks detailed formatting options for csv-export.
|
||||||
|
This function formats csv-files for ReDCap instruments after export from said programs.
|
||||||
|
}
|
||||||
|
\examples{
|
||||||
|
csv_redcap_cleaner("/Users/user/REDCap_conversion")
|
||||||
|
}
|
||||||
|
\keyword{redcap}
|
Loading…
Reference in New Issue
Block a user