|
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{ParseHMExcel}
\alias{ParseHMExcel}
\title{Parse an excel raw data file from armaggedon}
\usage{
ParseHMExcel(file, cols)
}
\arguments{
\item{file}{path to the excel file}
\item{cols}{list of columns index to read}
}
\value{
data.frame
}
\description{
Parse an excel raw data file from armaggedon
}
\examples{
data.raw <- ParseHMExcel("./data/hackmaggedon/file.xls", c(2, 3, 6, 5))
}
|