You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
msgid" - Use the `xxply` family of functions to apply functions to groups within"
msgstr" - Use the `xxply` family of functions to apply functions to groups within"
#:r-novice-gapminder/reference.md:212
msgid""
" some data.\n"
" - the first letter, `a`rray , `d`ata.frame or `l`ist corresponds to the input data\n"
" - the second letter denotes the output data structure\n"
" - Anonymous functions (those not assigned a name) are used inside the `plyr` family\n"
" of functions on groups within data."
msgstr""
" some data.\n"
" - the first letter, `a`rray , `d`ata.frame or `l`ist corresponds to the input data\n"
" - the second letter denotes the output data structure\n"
" - Anonymous functions (those not assigned a name) are used inside the `plyr` family\n"
" of functions on groups within data."
# header
#:r-novice-gapminder/reference.md:218
msgid"## [Dataframe manipulation with dplyr]({{ page.root }}/13-dplyr/)"
msgstr"## [Dataframe manipulation with dplyr]({{ page.root }}/13-dplyr/)"
# unordered list
#:r-novice-gapminder/reference.md:219
msgid" - `library(dplyr)`"
msgstr" - `library(dplyr)`"
# unordered list
#:r-novice-gapminder/reference.md:220
msgid" - `?select` to extract variables by name."
msgstr" - `?select` to extract variables by name."
# unordered list
#:r-novice-gapminder/reference.md:221
msgid" - `?filter` return rows with matching conditions."
msgstr" - `?filter` return rows with matching conditions."
# unordered list
#:r-novice-gapminder/reference.md:222
msgid" - `?group_by` group data by one of more variables."
msgstr" - `?group_by` group data by one of more variables."
# unordered list
#:r-novice-gapminder/reference.md:223
msgid" - `?summarize` summarize multiple values to a single value."
msgstr" - `?summarize` summarize multiple values to a single value."
# unordered list
#:r-novice-gapminder/reference.md:224
msgid" - `?mutate` add new variables to a data.frame."
msgstr" - `?mutate` add new variables to a data.frame."
# unordered list
#:r-novice-gapminder/reference.md:225
msgid" - Combine operations using the `?\"%>%\"` pipe operator."
msgstr" - Combine operations using the `?\"%>%\"` pipe operator."
# header
#:r-novice-gapminder/reference.md:227
msgid"## [Dataframe manipulation with tidyr]({{ page.root }}/14-tidyr/)"
msgstr"## [Dataframe manipulation with tidyr]({{ page.root }}/14-tidyr/)"
# unordered list
#:r-novice-gapminder/reference.md:228
msgid"- `library(tidyr)`"
msgstr"- `library(tidyr)`"
# unordered list
#:r-novice-gapminder/reference.md:229
msgid"- '?gather' convert data from *wide* to *long* format."
msgstr"- '?gather' convert data from *wide* to *long* format."
# unordered list
#:r-novice-gapminder/reference.md:230
msgid"- '?spread' convert data from *long* to *wide* format."
msgstr"- '?spread' convert data from *long* to *wide* format."
# unordered list
#:r-novice-gapminder/reference.md:231
msgid"- '?separate' split a single value into multiple values."
msgstr"- '?separate' split a single value into multiple values."
# unordered list
#:r-novice-gapminder/reference.md:232
msgid"- '?unite' merge multiple values into a single value."
msgstr"- '?unite' merge multiple values into a single value."
# header
#:r-novice-gapminder/reference.md:234
msgid"## [Producing reports with knitr]({{ page.root }}/15-knitr-markdown/)"
msgstr"## [Producing reports with knitr]({{ page.root }}/15-knitr-markdown/)"
# unordered list
#:r-novice-gapminder/reference.md:235
msgid"- Value of reproducible reports"
msgstr"- Value of reproducible reports"
# unordered list
#:r-novice-gapminder/reference.md:236
msgid"- Basics of Markdown"
msgstr"- Basics of Markdown"
# unordered list
#:r-novice-gapminder/reference.md:237
msgid"- R code chunks"
msgstr"- R code chunks"
# unordered list
#:r-novice-gapminder/reference.md:238
msgid"- Chunk options"
msgstr"- Chunk options"
# unordered list
#:r-novice-gapminder/reference.md:239
msgid"- Inline R code"
msgstr"- Inline R code"
# unordered list
#:r-novice-gapminder/reference.md:240
msgid"- Other output formats"
msgstr"- Other output formats"
# header
#:r-novice-gapminder/reference.md:242
msgid"## [Best practices for writing good code]({{ page.root }}/16-wrap-up/)"
msgstr"## [Best practices for writing good code]({{ page.root }}/16-wrap-up/)"
# unordered list
#:r-novice-gapminder/reference.md:244
msgid" * Program defensively, i.e., assume that errors are going to arise, and write code to detect them when they do."
msgstr" * Program defensively, i.e., assume that errors are going to arise, and write code to detect them when they do."
# unordered list
#:r-novice-gapminder/reference.md:245
msgid" * Write tests before writing code in order to help determine exactly what that code is supposed to do."
msgstr" * Write tests before writing code in order to help determine exactly what that code is supposed to do."
# unordered list
#:r-novice-gapminder/reference.md:246
msgid" * Know what code is supposed to do before trying to debug it."
msgstr" * Know what code is supposed to do before trying to debug it."
# unordered list
#:r-novice-gapminder/reference.md:247
msgid" * Make it fail every time."
msgstr" * Make it fail every time."
# unordered list
#:r-novice-gapminder/reference.md:248
msgid" * Make it fail fast."
msgstr" * Make it fail fast."
# unordered list
#:r-novice-gapminder/reference.md:249
msgid" * Change one thing at a time, and for a reason."
msgstr" * Change one thing at a time, and for a reason."
# unordered list
#:r-novice-gapminder/reference.md:250
msgid" * Keep track of what you've done."
msgstr" * Keep track of what you've done."
# unordered list
#:r-novice-gapminder/reference.md:251
msgid" * Be humble"
msgstr" * Be humble"
#:r-novice-gapminder/reference.md:255
msgid""
"{:auto_ids}\n"
"argument\n"
": A value given to a function or program when it runs.\n"
" The term is often used interchangeably (and inconsistently) with [parameter](#parameter)."
msgstr""
"{:auto_ids}\n"
"argument\n"
": A value given to a function or program when it runs.\n"
" The term is often used interchangeably (and inconsistently) with [parameter](#parameter)."
#:r-novice-gapminder/reference.md:260
msgid""
"assign\n"
": To give a value a name by associating a variable with it."
msgstr""
"assign\n"
": To give a value a name by associating a variable with it."
#:r-novice-gapminder/reference.md:263
msgid""
"body\n"
": (of a function): the statements that are executed when a function runs."
msgstr""
"body\n"
": (of a function): the statements that are executed when a function runs."
#:r-novice-gapminder/reference.md:266
msgid""
"comment\n"
": A remark in a program that is intended to help human readers understand what is going on,\n"
" but is ignored by the computer.\n"
" Comments in Python, R, and the Unix shell start with a `#` character and run to the end of the line;\n"
" comments in SQL start with `--`,\n"
" and other languages have other conventions."
msgstr""
"comment\n"
": A remark in a program that is intended to help human readers understand what is going on,\n"
" but is ignored by the computer.\n"
" Comments in Python, R, and the Unix shell start with a `#` character and run to the end of the line;\n"
" comments in SQL start with `--`,\n"
" and other languages have other conventions."
#:r-novice-gapminder/reference.md:273
msgid""
"comma-separated values\n"
": (CSV) A common textual representation for tables\n"
" in which the values in each row are separated by commas."
msgstr""
"comma-separated values\n"
": (CSV) A common textual representation for tables\n"
" in which the values in each row are separated by commas."
#:r-novice-gapminder/reference.md:277
msgid""
"delimiter\n"
": A character or characters used to separate individual values,\n"
" such as the commas between columns in a [CSV](#comma-separated-values) file."
msgstr""
"delimiter\n"
": A character or characters used to separate individual values,\n"
" such as the commas between columns in a [CSV](#comma-separated-values) file."
#:r-novice-gapminder/reference.md:281
msgid""
"documentation\n"
": Human-language text written to explain what software does,\n"
" how it works, or how to use it."
msgstr""
"documentation\n"
": Human-language text written to explain what software does,\n"
" how it works, or how to use it."
#:r-novice-gapminder/reference.md:285
msgid""
"floating-point number\n"
": A number containing a fractional part and an exponent.\n"
" See also: [integer](#integer)."
msgstr""
"floating-point number\n"
": A number containing a fractional part and an exponent.\n"
" See also: [integer](#integer)."
#:r-novice-gapminder/reference.md:289
msgid""
"for loop\n"
": A loop that is executed once for each value in some kind of set, list, or range.\n"
" See also: [while loop](#while-loop)."
msgstr""
"for loop\n"
": A loop that is executed once for each value in some kind of set, list, or range.\n"
" See also: [while loop](#while-loop)."
#:r-novice-gapminder/reference.md:293
msgid""
"index\n"
": A subscript that specifies the location of a single value in a collection,\n"
" such as a single pixel in an image."
msgstr""
"index\n"
": A subscript that specifies the location of a single value in a collection,\n"
" such as a single pixel in an image."
#:r-novice-gapminder/reference.md:297
msgid""
"integer\n"
": A whole number, such as -12343. See also: [floating-point number](#floating-point-number)."
msgstr""
"integer\n"
": A whole number, such as -12343. See also: [floating-point number](#floating-point-number)."
#:r-novice-gapminder/reference.md:300
msgid""
"library\n"
": In R, the directory(ies) where [packages](#package) are stored."
msgstr""
"library\n"
": In R, the directory(ies) where [packages](#package) are stored."
#:r-novice-gapminder/reference.md:303
msgid""
"package\n"
": A collection of R functions, data and compiled code in a well-defined format. Packages are stored in a [library](#library) and loaded using the library() function."
msgstr""
"package\n"
": A collection of R functions, data and compiled code in a well-defined format. Packages are stored in a [library](#library) and loaded using the library() function."
#:r-novice-gapminder/reference.md:306
msgid""
"parameter\n"
": A variable named in the function's declaration that is used to hold a value passed into the call.\n"
" The term is often used interchangeably (and inconsistently) with [argument](#argument)."
msgstr""
"parameter\n"
": A variable named in the function's declaration that is used to hold a value passed into the call.\n"
" The term is often used interchangeably (and inconsistently) with [argument](#argument)."
#:r-novice-gapminder/reference.md:310
msgid""
"return statement\n"
": A statement that causes a function to stop executing and return a value to its caller immediately."
msgstr""
"return statement\n"
": A statement that causes a function to stop executing and return a value to its caller immediately."
#:r-novice-gapminder/reference.md:313
msgid""
"sequence\n"
": A collection of information that is presented in a specific order."
msgstr""
"sequence\n"
": A collection of information that is presented in a specific order."
#:r-novice-gapminder/reference.md:316
msgid""
"shape\n"
": An array's dimensions, represented as a vector.\n"
" For example, a 5×3 array's shape is `(5,3)`."
msgstr""
"shape\n"
": An array's dimensions, represented as a vector.\n"
" For example, a 5×3 array's shape is `(5,3)`."
#:r-novice-gapminder/reference.md:320
msgid""
"string\n"
": Short for \"character string\",\n"
" a [sequence](#sequence) of zero or more characters."
msgstr""
"string\n"
": Short for \"character string\",\n"
" a [sequence](#sequence) of zero or more characters."
#:r-novice-gapminder/reference.md:324
msgid""
"syntax error\n"
": A programming error that occurs when statements are in an order or contain characters\n"
" not expected by the programming language."
msgstr""
"syntax error\n"
": A programming error that occurs when statements are in an order or contain characters\n"
" not expected by the programming language."
#:r-novice-gapminder/reference.md:328
msgid""
"type\n"
": The classification of something in a program (for example, the contents of a variable)\n"
" as a kind of number (e.g. [floating-point](#float), [integer](#integer)), [string](#string),\n"
" or something else. In R the command typeof() is used to query a variables type."
msgstr""
"type\n"
": The classification of something in a program (for example, the contents of a variable)\n"
" as a kind of number (e.g. [floating-point](#float), [integer](#integer)), [string](#string),\n"
" or something else. In R the command typeof() is used to query a variables type."
#:r-novice-gapminder/reference.md:333
msgid""
"while loop\n"
": A loop that keeps executing as long as some condition is true.\n"
" See also: [for loop](#for-loop)."
msgstr""
"while loop\n"
": A loop that keeps executing as long as some condition is true.\n"
" See also: [for loop](#for-loop)."
The text was updated successfully, but these errors were encountered:
Original webpage: http://swcarpentry.github.io/r-novice-gapminder/reference.html
i18n/po/r-novice-gapminder.ja.po
Lines 21166 to 22181 in 1decdaf
The text was updated successfully, but these errors were encountered: