document structure

This commit is contained in:
eneller
2026-02-01 16:12:40 +01:00
parent 05631293be
commit da4fc7c99c

View File

@@ -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>>=