Skip to content

Commit

Permalink
New translations 25-starting-with-data.md (Japanese)
Browse files Browse the repository at this point in the history
  • Loading branch information
kozo2 committed Aug 14, 2024
1 parent c4683e6 commit 71c9c18
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions locale/ja/episodes/25-starting-with-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ str(rna)\`の出力に基づいて、以下の
- オブジェクト `rna` のクラスは何ですか?
- このオブジェクトにはいくつの行といくつの列がありますか?

:::::::::::::::::::: 解決策
::::::::::::::: solution

## ソリューション

Expand Down Expand Up @@ -281,7 +281,7 @@ RStudio では、オートコンプリート機能を使用して、列の完全
行だけを保持し、`head(rna)\`
挙動を再現することができる。

:::::::::::::::::::: 解決策
::::::::::::::: solution

## ソリューション

Expand Down Expand Up @@ -422,7 +422,7 @@ plot(sex)

- F "と "M "の名前をそれぞれ "Female "と "Male "に変更する。

:::::::::::::::::::: 解決策
::::::::::::::: solution

## ソリューション

Expand Down Expand Up @@ -451,7 +451,7 @@ animal_data <- data.frame(
weight = c(45, 8 1.1, 0.8))
```

:::::::::::::::::::: 解決策
::::::::::::::: solution

## ソリューション

Expand Down Expand Up @@ -489,7 +489,7 @@ country_climate <- data.frame(
)
```

:::::::::::::::::::: 解決策
::::::::::::::: solution

## ソリューション

Expand Down Expand Up @@ -546,7 +546,7 @@ installed.packages()`という関数を使って、
あなたのコンピューターに現在インストールされているすべてのパッケージの情報を含む `文字\`行列
を作成します。 探検してみよう。

:::::::::::::::::::: 解決策
::::::::::::::: solution

## 解決策

Expand Down Expand Up @@ -578,7 +578,7 @@ colnames(ip)
正規分布データ
(平均0、標準偏差1)の次元1000×3の行列を作る。

:::::::::::::::::::: 解決策
::::::::::::::: solution

## ソリューション

Expand Down Expand Up @@ -767,7 +767,7 @@ write.csv(rna, file = "data_output/my_rna.csv")
、列の区切り文字としてカンマを使用しているにもかかわらず、
、Rに正しく読み込むことができます。

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: キーポイント
:::::::::::::::::::::::::::::::::::::::: keypoints

- Rでの表形式データ

Expand Down

0 comments on commit 71c9c18

Please sign in to comment.