|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Hackmageddon_Parser.R
\name{ProcessHMRaw}
\alias{ProcessHMRaw}
\title{Prepare raw data from hackmaggedon's excel to use it}
\usage{
ProcessHMRaw(dataset.raw, dateOffset)
}
\arguments{
\item{dataset.raw}{data.frame with raw data}
\item{dateOffset}{origin to add the numeric date}
}
\value{
data.frame
}
\description{
Prepare raw data from hackmaggedon's excel to use it
}
\examples{
data.pro <- ProcessHMRaw(data.raw, "1899-12-30")
}
|