Skip to content

Commit

Permalink
Revise as.caalculator and scripts.
Browse files Browse the repository at this point in the history
In scripts chapter add section on pipes in base R.
  • Loading branch information
aphalo committed Nov 19, 2022
1 parent 48b9359 commit 19baa25
Show file tree
Hide file tree
Showing 154 changed files with 40,973 additions and 382,487 deletions.
273 changes: 187 additions & 86 deletions R.as.calculator.Rnw

Large diffs are not rendered by default.

194 changes: 142 additions & 52 deletions R.plotting.Rnw

Large diffs are not rendered by default.

502 changes: 502 additions & 0 deletions R.plotting.tex

Large diffs are not rendered by default.

57 changes: 48 additions & 9 deletions R.scripts.Rnw
Original file line number Diff line number Diff line change
Expand Up @@ -1107,21 +1107,25 @@ str(z)

\section{Functions that replace loops}

\Rlang provides several functions that can be used to avoid writing iterative loops in \Rlang. These functions are written in \Clang and compiled, so even when iterative algorithms are used, they are fast. Replacing code implementing an iterative algorithm by a single function call simplifies the script's code and can make it easier to understand. A table with examples of some useful functions that are available in base \Rlang is provided here. All these functions take a vector as their first argument.\vspace{2ex}.
\Rlang provides several functions that can be used to avoid writing iterative loops in \Rlang. The most frequently used are taken for granted: \Rfunction{mean()}, \Rfunction{var()} (variance), \Rfunction{sd()} (standard deviation), \Rfunction{max()}, and \Rfunction{min()}. Replacing code implementing an iterative algorithm by a single function call simplifies the script's code and can make it easier to understand. These functions are written in \Clang and compiled, so even when iterative algorithms are used, they are fast. A table with examples of additional functions available in base \Rlang that implement iterative algorithms is provided below. All these functions take a vector of arbitrary length as their first argument, except for \Rfunction{inverse.rle()}.\vspace{2ex}

\noindent
\begin{tabular}{lll}
\toprule
Function & Computation & Value, length \\
\midrule
\Rfunction{sum()} & $\sum_{i=1}^n x_i$ & numeric, 1 \\
\Rfunction{prod()} & $\prod_{i=1}^n x_i$ & numeric, 1 \\
\Rfunction{max()} & $x_{max}$ & numeric, 1 \\
\Rfunction{min()} & $x_{min}$ & numeric, 1 \\
\Rfunction{cumsum()} & $\sum_{i=1}^1 x_i, \cdots \sum_{i=1}^j x_i, \cdots \sum_{i=1}^n x_i$ & numeric, n \\
\Rfunction{cumprod()} & $\prod_{i=1}^1 x_i, \cdots \prod_{i=1}^j x_i, \cdots \prod_{i=1}^n x_i$ & numeric, n \\
\Rfunction{cummax()} & $x_{max}$ & numeric, n \\
\Rfunction{cummin()} & $x_{min}$ & numeric, n \\
\Rfunction{diff()} & $x_2 - x_1, \cdots x_i - x_{i-1}, \cdots x_n - x_{n-1}$ & numeric, n-1 \\
\Rfunction{cumsum()} & $\sum_{i=1}^1 x_i, \cdots \sum_{i=1}^j x_i, \cdots \sum_{i=1}^n x_i$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\
\Rfunction{cumprod()} & $\prod_{i=1}^1 x_i, \cdots \prod_{i=1}^j x_i, \cdots \prod_{i=1}^n x_i$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\
\Rfunction{cummax()} & cumulative maximum & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\
\Rfunction{cummin()} & cumulative minimum & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\
\Rfunction{runmed()} & running median & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\
\Rfunction{diff()} & $x_2 - x_1, \cdots x_i - x_{i-1}, \cdots x_n - x_{n-1}$ & numeric, $n_\mathrm{out} = n_\mathrm{in}-1$ \\
\Rfunction{diffinv()} & inverse of diff & numeric, $n_\mathrm{out} = n_\mathrm{in}+1$ \\
\Rfunction{factorial()} & $x!$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\
\Rfunction{rle()} & run-length encoding & $n_\mathrm{out} < n_\mathrm{in}$ \\
\Rfunction{inverse.rle()} & run-length decoding & $n_\mathrm{out} > n_\mathrm{in}$ \\
\bottomrule
\end{tabular}

Expand Down Expand Up @@ -1240,5 +1244,40 @@ str(results, max.level = 1)
do.call(anova, results)
@

\subsection{Further reading}
\section{Data pipes in base R}

The \pkgname{tidyverse} has popularized the use of data pipes in \Rlang. Recently base \Rlang has gained a pipe operator, \Roperator{|>}, and in combination with well known base \Rlang functions it provides a concise notation for data selection and transformations. In general whenever we use temporary variables to store values that are used only once, we can chain the statements making the saving into a temporary variable implicit instead of explicit. In many cases, nested function calls can also be transformed into easier to read \emph{pipes}.

Addition of computed variables to a data frame using \Rfunction{within()} and selecting rows with \Rfunction{subset()} are combined in our first `toy' example. We use the \code{\_} placeholder to indicate the value returned by the preceding function in the pipe.

<<r-pipes-01>>=
data.frame(x = 1:10, y = rnorm(10)) |>
within(data = _,
{
x4 <- x^4
is.large <- x^4 > 1000
}) |>
subset(x = _, is.large)
@

To summarize variables we can use \Rfunction{aggregate()}.

<<r-pipes-02>>=
data.frame(group = factor(rep(c("T1", "T2", "Ctl"), each = 4)),
y = rnorm(12)) |>
subset(x = _, group %in% c("T1", "T2")) |>
aggregate(data = _, y ~ group, mean)
@

Although the extraction operators are not accepted on the rhs of a pipe, function \Rfunction{getElement()} can be used to extract a member by name, in this case a column.

<<r-pipes-03>>=
data.frame(group = factor(rep(c("T1", "T2", "Ctl"), each = 4)),
y = rnorm(12)) |>
subset(x = _, group %in% c("T1", "T2")) |>
aggregate(data = _, y ~ group, mean) |>
getElement("y")
@

\section{Further reading}
For\index{further reading!the R language} further readings on the aspects of \Rlang discussed in the current chapter, I suggest the books \citetitle{Matloff2011} (\citeauthor{Matloff2011}) and \citetitle{Wickham2019} (\citeauthor{Wickham2019}).
Binary file added aphalo-learn-r-2ed-draft.pdf
Binary file not shown.
187 changes: 38 additions & 149 deletions appendixes.prj
Original file line number Diff line number Diff line change
@@ -1,193 +1,82 @@
36 Patch Control

0
0
1
1
1
using-r-main-crc.Rnw
120
83
12
0
8

using-r-main-crc.Rnw
TeX:RNW:UTF-8
420491259 0 -1 5881 -1 5885 208 208 1244 731 1 1 452 928 -1 -1 0 0 33 0 0 33 2 0 5885 -1 1 5161 -1 0 -1 0
152055803 0 -1 6324 -1 6474 208 208 1244 731 1 1 129 345 -1 -1 0 0 33 0 0 33 2 0 6474 -1 1 5300 -1 0 -1 0
R.plotting.Rnw
TeX:RNW
17838075 0 -1 17724 -1 17050 130 130 1166 559 1 1 345 552 -1 -1 0 0 31 -1 -1 31 3 0 17050 -1 1 189829 -1 2 160405 -1 0 -1 0
preface.Rnw
TeX:RNW
17838075 0 131 126 -1 14049 130 130 1573 499 1 1 141 552 -1 -1 0 0 18 -1 -1 18 1 0 14049 -1 0 -1 0
usingr.sty
TeX:STY
1060850 0 94 1 65 39 234 234 1270 724 0 0 484 161 -1 -1 0 0 25 0 0 25 1 0 39 65 0 0 0
R.intro.Rnw
TeX:RNW
17838075 0 62 76 -1 11 182 182 1218 705 1 1 367 0 -1 -1 0 0 261 -1 -1 261 1 0 11 -1 0 -1 0
frontmatter\preface.tex
TeX
1060859 0 91 92 -1 9171 130 130 1573 499 0 1 418 224 -1 -1 0 0 18 -1 -1 18 1 0 9171 -1 0 -1 0
17838075 0 -1 3451 -1 11 182 182 1218 705 1 1 261 0 -1 -1 0 0 261 -1 -1 261 1 0 11 -1 0 -1 0
references.bib
BibTeX
1049586 0 363 1 412 1 0 0 820 242 0 1 61 64 -1 -1 0 0 23 0 0 23 1 0 1 412 0 -1 0
1049586 0 363 1 412 1 0 0 820 242 0 1 45 529 -1 -1 0 0 23 0 0 23 1 0 1 412 0 -1 0
R.as.calculator.Rnw
TeX:RNW
17838075 0 906 6 -1 37914 26 26 1062 549 1 1 282 352 -1 -1 0 0 31 -1 -1 31 3 0 37914 -1 1 20156 -1 2 31882 -1 0 -1 0
17838075 0 -1 56568 -1 56568 26 26 1062 549 1 1 129 529 -1 -1 0 0 31 -1 -1 31 3 0 56568 -1 1 20264 -1 2 31990 -1 0 -1 0
:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty
TeX:STY:UNIX
1159154 0 0 1 0 1 192 192 1091 587 1 0 112 0 -1 -1 0 0 42 0 0 42 1 0 1 0 0 0 0
R.scripts.Rnw
TeX:RNW
17838075 0 -1 32619 -1 29572 78 78 1114 601 1 1 758 352 -1 -1 0 0 31 -1 -1 31 3 0 29572 -1 1 75574 -1 2 27591 -1 0 -1 0
usingr.sty
TeX:STY
1060850 1 52 13 52 22 234 234 1270 724 0 0 395 352 -1 -1 0 0 25 0 0 25 1 0 22 52 0 0 0
286273531 0 -1 85396 -1 85397 78 78 1114 601 1 1 249 138 -1 -1 0 0 31 -1 -1 31 3 0 85397 -1 1 75574 -1 2 27591 -1 0 -1 0
R.stats.rnw
TeX:RNW
17838075 0 375 108 -1 19961 26 26 931 556 1 1 435 352 -1 -1 0 0 31 -1 -1 31 3 0 19961 -1 1 66597 -1 2 70247 -1 0 -1 0
17838075 0 -1 11526 -1 19961 26 26 931 556 1 1 237 552 -1 -1 0 0 31 -1 -1 31 3 0 19961 -1 1 66597 -1 2 70247 -1 0 -1 0
R.functions.Rnw
TeX:RNW
17838075 1 -1 14641 -1 15508 130 130 1166 653 1 1 180 352 -1 -1 0 0 264 -1 -1 264 1 0 15508 -1 0 -1 0
R.plotting.Rnw
TeX:RNW
17838075 0 -1 29978 -1 15896 130 130 1166 559 1 1 622 160 -1 -1 0 0 31 -1 -1 31 3 0 15896 -1 1 178031 -1 2 148607 -1 0 -1 0
17838075 1 -1 14641 -1 15508 130 130 1166 653 1 1 129 552 -1 -1 0 0 264 -1 -1 264 1 0 15508 -1 0 -1 0
R.data.Rnw
TeX:RNW
17838075 0 -1 16680 -1 30152 26 26 977 443 1 1 180 288 -1 -1 0 0 31 -1 -1 31 2 0 30152 -1 1 49186 -1 0 -1 0
R.data.io.Rnw
TeX:RNW
17838075 0 -1 31229 -1 42738 0 0 1498 379 1 1 554 224 -1 -1 0 0 31 -1 -1 31 1 0 42738 -1 0 -1 0
17838075 0 -1 10055 -1 30152 26 26 977 443 1 1 597 529 -1 -1 0 0 31 -1 -1 31 2 0 30152 -1 1 49186 -1 0 -1 0
using-r-main-crc.tex
TeX
269496315 8 -1 168591 -1 168556 132 132 1426 991 1 1 282 672 -1 -1 0 0 49 -1 -1 49 1 0 168556 -1 0 -1 0
:\Users\Aphalo\Documents\RAnalyses\RFR-Viikki-field\data-latest\Viikki Tower_TableHour.dat
DATA
273678578 0 0 1 0 1 0 0 1528 316 1 0 -12814 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Campbellsci\PC400\Viikki Tower_Public.dat
DATA
273678578 0 0 1 0 1 0 0 1528 316 1 0 114 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Aphalo\Documents\Own_references\all_references_dedup.bib
BibTeX
269485042 0 0 1 0 1 44 44 1522 998 1 1 152 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 -1 0
:\Users\Aphalo\Documents\Own_references\libib-export\helka_library_20220807_094148.csv
DATA:UNIX
273776882 0 0 1 0 1 44 44 1522 998 1 0 132 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Aphalo\Documents\Instrumentation\Vaisala-WXT-profiles\WXT536-2021-06-09.wxc
269496315 0 -1 119312 -1 119312 0 0 1942 992 1 1 129 207 -1 -1 0 0 49 -1 -1 49 1 0 119312 -1 0 -1 0
:\Users\Aphalo\Documents\Own_talks\r4p-training-2016\talk.prj
DATA
273678578 0 0 1 86 24 88 88 1933 889 1 0 454 182 -1 -1 0 0 14 0 0 14 1 0 24 86 0 0 0
:\Users\Aphalo\Documents\LaTeX-various\labels\LABELS.prj
273678578 0 0 1 0 1 128 128 1027 523 1 0 112 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Aphalo\Documents\Own_teaching\Valdivia-2022\slides-renewed\lectures-2022.prj
DATA
273678578 0 0 1 0 1 88 88 1382 947 1 0 132 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-colors.Rnw
TeX:RNW
269496315 0 -1 0 -1 0 352 352 1646 1211 1 1 152 -6110 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0
:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R.plotting-extra.Rnw
TeX:RNW
269496315 0 -1 0 -1 0 308 308 1602 1167 1 1 152 -11520 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0
using-r-main-crc.ind
TeX:AUX:UNIX
269594610 8 251 1 250 1 220 220 1514 1079 1 0 132 1170 -1 -1 0 0 17 0 0 17 1 0 1 250 0 0 0
:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-text.Rnw
TeX:RNW
269496315 0 -1 0 -1 0 132 132 1426 991 1 1 152 -10666 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0
:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-flipped-axes.Rnw
TeX:RNW
269496315 1 -1 10109 -1 11880 264 264 1558 1123 1 1 152 5902 -1 -1 0 0 30 -1 -1 30 1 0 11880 -1 0 -1 0
:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\learn-r-extra-web.Rnw
273678578 0 0 1 0 1 128 128 1535 587 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
R.data.io.Rnw
TeX:RNW
269496315 0 -1 702 -1 623 88 88 1382 947 1 1 418 -156 -1 -1 0 0 -1 -1 -1 -1 1 0 623 -1 0 -1 0
:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty
TeX:STY:UNIX
269594610 0 7977 70 7977 73 64 64 977 575 0 0 1042 208 -1 -1 0 0 42 0 0 42 1 0 73 7977 0 0 0
:\Users\Aphalo\AppData\Roaming\WinEdt Team\WinEdt 11\ConfigEx\Toolbar.ini
DATA:INI:EDT
269485050 0 325 1 300 51 220 220 1342 1335 1 1 797 280 -1 -1 0 0 -1 -1 -1 -1 1 0 51 300 0 -1 0
17838075 0 512 98 -1 42738 0 0 1498 379 1 1 1556 690 -1 -1 0 0 31 -1 -1 31 1 0 42738 -1 0 -1 0
preface.tex
TeX
269496315 0 -1 0 -1 0 228 228 2555 1220 1 1 148 0 -1 -1 0 0 18 -1 -1 18 1 0 0 -1 0 -1 0
frontmatter\preface.tex
TeX
269496315 0 -1 14557 -1 14663 130 130 1573 499 0 1 2612 950 -1 -1 0 0 18 -1 -1 18 1 0 14663 -1 0 -1 0
.gitignore
DATA
273678578 0 10 1 21 1 25 25 1741 444 1 0 71 294 -1 -1 0 0 12 0 0 12 1 0 1 21 0 0 0
:\Users\Aphalo\Documents\RAnalyses\anders-kumpula-2015-2016\hourly-spectra.nb.Rmd
DATA
273678578 0 0 1 0 1 182 182 1586 547 1 0 71 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
manual-edit
DATA
273678578 0 0 1 0 1 208 208 1586 651 1 0 71 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.tex
TeX
269496315 0 -1 0 -1 0 104 104 1482 547 0 1 39 -1050 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0
:\Program Files\MiKTeX 2.9\tex\latex\polyglossia\gloss-english.ldf
TeX:STY:UNIX
269594610 7 125 1 124 1 0 0 1065 329 0 0 25 612 -1 -1 0 0 66 0 0 66 1 0 1 124 0 0 0
rbooks.bib
BibTeX:UNIX
269583346 0 331 38 328 36 52 52 872 313 1 1 369 357 -1 -1 0 0 21 0 0 21 1 0 36 328 0 -1 0
:\ProgramData\MiKTeX\2.9\miktex\log\miktex-fc-cache_admin.log
DATA
273678578 0 0 1 0 1 32 32 2042 643 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\aphalo\Qsync\RFR-Viikki-field\data-2018-october\data-2016-3\CR6Series_TableDay.dat
DATA
273678578 0 0 1 0 1 104 104 1606 538 1 0 73 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
CRC\Aphalo - contract - signed.pdf
DATA
273744114 0 0 1 0 1 160 160 1658 539 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
cut-from-plots.tex
TeX
269496315 0 -1 5047 -1 12688 234 234 1710 723 1 1 265 357 -1 -1 0 0 18 -1 -1 18 1 0 12688 -1 0 -1 0
R.ploting-extra.Rnw
TeX:RNW
269496315 0 -1 549 -1 3549 64 64 1303 475 1 1 105 273 -1 -1 0 0 31 -1 -1 31 1 0 3549 -1 0 -1 0
R.more.plotting.Rnw
TeX:RNW
286273515 0 -1 43294 -1 43292 26 26 924 603 1 1 105 252 -1 -1 0 0 30 -1 -1 30 1 0 43292 -1 0 -1 0
:\aphalo\Documents\RPackages\photobiologyFilters\data-raw\screen-nets-kotilainen-et-al\ScreensNets_irrad_trans.txt
ASCII
273688443 0 0 1 266148 1 96 96 1594 475 1 0 97 5589108 -1 -1 0 0 -1 -1 -1 -1 1 0 1 266148 0 0 0
:\aphalo\Documents\RPackages\repository_tools\reinstall-packages.R
R
269485042 0 1 17 3 1 0 0 965 456 1 0 73 51 -1 -1 0 0 -1 -1 -1 -1 1 0 1 3 0 0 0
:\aphalo\Documents\RAnalyses\anders-kumpula-2015-2016\Anders-2013-2017\kumpula_par_2013to17_MaySep.dat
DATA:UNIX
273776882 0 0 1 0 1 26 26 965 305 1 0 73 0 -1 -1 0 0 71 0 0 71 1 0 1 0 0 0 0
:\aphalo\Documents\Own_research_data\Helsinki\Summer2015\Radiation\CR6_HU_TableHour.dat
DATA
273678578 0 0 1 0 1 0 0 1178 360 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\aphalo\Documents\Own_research_data\Helsinki\Summer2015\Radiation\CR6_HU_TableDay.dat
DATA
273678578 0 0 1 0 1 160 160 1338 520 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\aphalo\Qsync\RFR-Viikki-field\CR6Series_Public.dat
DATA
273678578 0 0 1 0 1 160 160 1338 520 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\aphalo\Qsync\RFR-Viikki-field\CR6Series_TableDay.dat
DATA
273678578 0 0 1 0 190033 78 78 1442 605 1 0 87 0 -1 -1 0 0 84 0 0 84 1 0 190033 0 0 0 0
:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\Toolbar.ini
DATA:INI:EDT
269485050 0 129 15 129 88 128 128 1422 578 1 1 975 252 -1 -1 0 0 83 0 0 83 1 0 88 129 0 -1 0
:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\MainMenu.ini
DATA:INI:EDT
269485050 0 4357 1 4357 75 32 32 1358 476 1 1 845 546 -1 -1 0 0 -1 -1 -1 -1 1 0 75 4357 0 -1 0
:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\Upgrade20180507.log
DATA
307233010 0 0 1 0 1 96 96 1792 546 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\UserPreferences.ini
DATA:INI:EDT
269485050 0 0 1 0 1 160 160 1454 610 1 1 105 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ContribManager\RManager\Readme.txt
ASCII
273688443 0 0 1 0 1 224 224 1518 674 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\aphalo\Downloads\winedt\ContribManager_102\ContribManager\Install.edt
ASCII:EDT
269494138 0 0 1 14 125 192 192 1824 785 1 0 1327 294 -1 -1 0 0 21 0 0 21 1 0 125 14 0 0 0
:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\R\Knitr.R
R
269485042 0 0 1 0 1 32 32 1728 482 0 0 27 0 -1 -1 0 0 30 0 0 30 1 0 1 0 0 0 0
R.maps.Rnw
TeX:RNW
286273531 2 -1 34382 -1 34392 64 64 974 522 1 1 255 168 -1 -1 0 0 462 -1 -1 462 1 0 34392 -1 0 -1 0
backups\R.stats.rnw.sav
TeX:RNW
269496315 1 -1 11478 -1 13425 128 128 1584 460 0 1 204 440 -1 -1 0 0 -1 -1 -1 -1 1 0 13425 -1 0 -1 0
:\Program Files\Ocean Optics\OmniDriver\install.log
DATA
273678578 0 0 1 0 1 104 104 1009 634 1 0 73 -2350 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\aphalo\Documents\Own_research_data\Helsinki\Logger-field-Viikki\data-2017-1\CR6Series_TableMinute.dat
DATA
273678578 0 0 1 133963 59 104 104 1009 634 1 0 545 1568 -1 -1 0 0 -1 -1 -1 -1 1 0 59 133963 0 0 0
test-verbatim-spacing.Rnw
TeX:RNW
286273531 0 -1 113 -1 113 208 208 1113 738 0 1 41 64 -1 -1 0 0 -1 -1 -1 -1 1 0 113 -1 0 -1 0
test-verbatim-spacing.tex
TeX
269496315 1 -1 2169 -1 2163 234 234 1139 745 0 1 569 352 -1 -1 0 0 69 -1 -1 69 1 0 2163 -1 0 -1 0
verbatim-test.tex
TeX
269496315 1 -1 0 -1 147 130 130 1035 660 0 1 41 96 -1 -1 0 0 -1 -1 -1 -1 1 0 147 -1 0 -1 0
README.md
DATA
273678578 0 18 48 8 1 182 182 1133 599 1 0 73 128 -1 -1 0 0 11 0 0 11 1 0 1 8 0 0 0
Expand Down Expand Up @@ -373,7 +262,7 @@ TeX:UNIX
>
*rbooks.bib
*references.bib
*frontmatter/preface
*preface.Rnw
*R.intro.Rnw
*R.as.calculator.Rnw
*R.scripts.Rnw
Expand Down
Loading

0 comments on commit 19baa25

Please sign in to comment.