document structure
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
\documentclass{article}
|
\documentclass[conference,a4paper]{IEEEtran}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\section{Abstract}\label{abstract}
|
\section{Abstract}\label{abstract}
|
||||||
@@ -20,9 +20,12 @@
|
|||||||
\subsection{Descriptive Statistics}\label{descriptive-statistics}
|
\subsection{Descriptive Statistics}\label{descriptive-statistics}
|
||||||
|
|
||||||
<<echo=FALSE>>=
|
<<echo=FALSE>>=
|
||||||
|
library(knitr)
|
||||||
results <- read.csv("../data/results.csv", sep=",", header=TRUE)
|
results <- read.csv("../data/results.csv", sep=",", header=TRUE)
|
||||||
summary(results[, c("qwerty_ter", "dvorak_ter", "circle_ter")])
|
ter <- summary(results[, c("qwerty_ter", "dvorak_ter", "circle_ter")])
|
||||||
summary(results[, c("qwerty_wpm", "dvorak_wpm", "circle_wpm")])
|
wpm <- summary(results[, c("qwerty_wpm", "dvorak_wpm", "circle_wpm")])
|
||||||
|
kable(ter, format = "latex")
|
||||||
|
kable(wpm, format = "latex")
|
||||||
@
|
@
|
||||||
|
|
||||||
<<echo=FALSE>>=
|
<<echo=FALSE>>=
|
||||||
|
|||||||
Reference in New Issue
Block a user