Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mmRmeta/man/rename_margin.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (31 sloc)
899 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Generated by roxygen2: do not edit by hand | |
% Please edit documentation in R/rename_margin.R | |
\name{rename_margin} | |
\alias{rename_margin} | |
\title{Shorten column names} | |
\usage{ | |
rename_margin( | |
df, | |
margin, | |
char_from = NULL, | |
char_to = NULL, | |
cut_from = NULL, | |
cut_to = NULL | |
) | |
} | |
\arguments{ | |
\item{df}{Data frame} | |
\item{margin}{1 = rownames, 2 = colnames} | |
\item{char_from}{Character to be changed} | |
\item{char_to}{The character char_from is changed to} | |
} | |
\value{ | |
Returns the same df with different column or rownames. | |
} | |
\description{ | |
This function shortenes the column names using regex. When flattening a list from .json the resulting colums are named like "diagnoses.treatment.updated_datetime". Each period indicating a level of the list. | |
For better readability everything in front of the last period is deleted. | |
} | |
\examples{ | |
z1 <- rename_margin(df, 2, "\\\\.", "-") #change all "." to "-" | |
} |