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
"> Is gapminder a purely long, purely wide, or some intermediate format?\n"
">\n"
">\n"
"> > ## Solution to Challenge 1\n"
"> >\n"
"> > The original gapminder data.frame is in an intermediate format. It is not\n"
"> > purely long since it had multiple observation variables\n"
"> > (`pop`,`lifeExp`,`gdpPercap`)."
msgstr""
">\n"
"> Is gapminder a purely long, purely wide, or some intermediate format?\n"
">\n"
">\n"
"> > ## Solution to Challenge 1\n"
"> >\n"
"> > The original gapminder data.frame is in an intermediate format. It is not\n"
"> > purely long since it had multiple observation variables\n"
"> > (`pop`,`lifeExp`,`gdpPercap`)."
#:r-novice-gapminder/_episodes/14-tidyr.md:102
msgid""
"Sometimes, as with the gapminder dataset, we have multiple types of observed\n"
"data. It is somewhere in between the purely 'long' and 'wide' data formats. We\n"
"have 3 \"ID variables\" (`continent`, `country`, `year`) and 3 \"Observation\n"
"variables\" (`pop`,`lifeExp`,`gdpPercap`). I usually prefer my data in this\n"
"intermediate format in most cases despite not having ALL observations in 1\n"
"column given that all 3 observation variables have different units. There are\n"
"few operations that would need us to stretch out this dataframe any longer\n"
"(i.e. 4 ID variables and 1 Observation variable)."
msgstr""
"Sometimes, as with the gapminder dataset, we have multiple types of observed\n"
"data. It is somewhere in between the purely 'long' and 'wide' data formats. We\n"
"have 3 \"ID variables\" (`continent`, `country`, `year`) and 3 \"Observation\n"
"variables\" (`pop`,`lifeExp`,`gdpPercap`). I usually prefer my data in this\n"
"intermediate format in most cases despite not having ALL observations in 1\n"
"column given that all 3 observation variables have different units. There are\n"
"few operations that would need us to stretch out this dataframe any longer\n"
"(i.e. 4 ID variables and 1 Observation variable)."
#:r-novice-gapminder/_episodes/14-tidyr.md:111
msgid""
"While using many of the functions in R, which are often vector based, you\n"
"usually do not want to do mathematical operations on values with different\n"
"units. For example, using the purely long format, a single mean for all of the\n"
"values of population, life expectancy, and GDP would not be meaningful since it\n"
"would return the mean of values with 3 incompatible units. The solution is that\n"
"we first manipulate the data either by grouping (see the lesson on `dplyr`), or\n"
"we change the structure of the dataframe. **Note:** Some plotting functions in\n"
"R actually work better in the wide format data."
msgstr""
"While using many of the functions in R, which are often vector based, you\n"
"usually do not want to do mathematical operations on values with different\n"
"units. For example, using the purely long format, a single mean for all of the\n"
"values of population, life expectancy, and GDP would not be meaningful since it\n"
"would return the mean of values with 3 incompatible units. The solution is that\n"
"we first manipulate the data either by grouping (see the lesson on `dplyr`), or\n"
"we change the structure of the dataframe. **Note:** Some plotting functions in\n"
"R actually work better in the wide format data."
# header
#:r-novice-gapminder/_episodes/14-tidyr.md:120
msgid"## From wide to long format with gather()"
msgstr"## From wide to long format with gather()"
#:r-novice-gapminder/_episodes/14-tidyr.md:122
msgid""
"Until now, we've been using the nicely formatted original gapminder dataset, but\n"
"'real' data (i.e. our own research data) will never be so well organized. Here\n"
"let's start with the wide format version of the gapminder dataset."
msgstr""
"Until now, we've been using the nicely formatted original gapminder dataset, but\n"
"'real' data (i.e. our own research data) will never be so well organized. Here\n"
"let's start with the wide format version of the gapminder dataset."
# blockquote, which can be cascaded
#:r-novice-gapminder/_episodes/14-tidyr.md:126
msgid"> Download the wide version of the gapminder data from [here](https://raw.githubusercontent.com/swcarpentry/r-novice-gapminder/gh-pages/_episodes_rmd/data/gapminder_wide.csv)"
msgstr"> Download the wide version of the gapminder data from [here](https://raw.githubusercontent.com/swcarpentry/r-novice-gapminder/gh-pages/_episodes_rmd/data/gapminder_wide.csv)"
#:r-novice-gapminder/_episodes/14-tidyr.md:127
msgid"and save it in your data folder."
msgstr"and save it in your data folder."
#:r-novice-gapminder/_episodes/14-tidyr.md:129
msgid""
"We'll load the data file and look at it. Note: we don't want our continent and\n"
"country columns to be factors, so we use the stringsAsFactors argument for\n"
"`read.csv()` to disable that."
msgstr""
"We'll load the data file and look at it. Note: we don't want our continent and\n"
"country columns to be factors, so we use the stringsAsFactors argument for\n"
Translation of section 14 on
tidyr
(lines 18114 to 19241)セクション14
tidyr
の翻訳 (18114 から 19241 まで)i18n/po/r-novice-gapminder.ja.po
Lines 18114 to 19241 in 5f1d2d1
The text was updated successfully, but these errors were encountered: