Skip to content
Permalink
master
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
% 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 "-"
}