Skip to content

Commit

Permalink
Revert "Activate automatic generation of IDs for terms in reference"
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Sep 27, 2016
1 parent c5f24fb commit 407f178
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _episodes_rmd/01-starting-with-data.Rmd
Expand Up @@ -36,7 +36,7 @@ knitr_fig_path("01-starting-with-data-")

We are studying inflammation in patients who have been given a new treatment for arthritis,
and need to analyze the first dozen data sets.
The data sets are stored in [comma-separated values]({{ page.root }}/reference/#comma-separated-values) (CSV) format. Each row holds the observations for just one patient. Each column holds the inflammation measured in a day, so we have a set of values in successive days.
The data sets are stored in [comma-separated values]({{ page.root }}/reference/#comma-separated-values-(csv)) (CSV) format. Each row holds the observations for just one patient. Each column holds the inflammation measured in a day, so we have a set of values in successive days.
The first few rows of our first file look like this:

```{r echo = FALSE}
Expand Down
9 changes: 4 additions & 5 deletions reference.md
Expand Up @@ -109,14 +109,13 @@ increment_me <- function(value_to_increment, value_to_increment_by = 1){
## Glossary
{:auto_ids}
argument
: A value given to a function or program when it runs. The term is often used interchangeably (and inconsistently) with [parameter](#parameter).
call stack
: A data structure inside a running program that keeps track of active function calls. Each call's variables are stored in a [stack frame](#stack-frame); a new stack frame is put on top of the stack for each call, and discarded when the call is finished.
{:#comma-separated-values}comma-separated values (CSV)
comma-separated values (CSV)
: A common textual representation for tables in which the values in each row are separated by commas.
comment
Expand All @@ -125,7 +124,7 @@ comment
conditional statement
: A statement in a program that might or might not be executed depending on whether a test is true or false.
{:#dimensions}dimensions (of an array)
dimensions (of an array)
: An array's extent, represented as a vector. For example, an array with 5 rows and 3 columns has dimensions `(5,3)`.
documentation
Expand Down Expand Up @@ -173,10 +172,10 @@ slice
stack frame
: A data structure that provides storage for a function's local variables. Each time a function is called, a new stack frame is created and put on the top of the [call stack](#call-stack). When the function returns, the stack frame is discarded.
{:#standard-input}standard input (stdin)
standard input (stdin)
: A process's default input stream. In interactive command-line applications, it is typically connected to the keyboard; in a [pipe](#pipe), it receives data from the [standard output](#standard-output) of the preceding process.
{:#standard-output}standard output (stdout)
standard output (stdout)
: A process's default output stream. In interactive command-line applications, data sent to standard output is displayed on the screen; in a [pipe](#pipe), it is passed to the [standard input](#standard-input) of the next process.
string
Expand Down

0 comments on commit 407f178

Please sign in to comment.