Summary and Schedule
これは、効率的なデータ分析ワークフローを維持するための targets R パッケージの使い方についてのレッスンです。
Setup Instructions | Download files required for the lesson | |
Duration: 00h 00m | 1. はじめに |
なぜ再現性にこだわる必要がありますか?targets
は再現性の達成にどう役立ちますか?
|
Duration: 00h 12m | 2. 初めてのtargetsによるワークフロー |
解析を整理するためのベストプラクティスは?_targets.R ファイルは何に使うのか?_targets.R ファイルの内容は?ワークフローはどのように実行出来るのか? |
Duration: 00h 24m | 3. Loading Workflow Objects |
ワークフローはどこで行われるのか? ワークフローによって構築されたオブジェクトを確認するには? |
Duration: 00h 36m | 4. The Workflow Lifecycle |
What happens if we re-run a workflow? How does targets
know what steps to re-run?How can we inspect the state of the workflow? |
Duration: 00h 48m | 5. Best Practices for targets Project Organization |
What are best practices for organizing targets
projects?How does the organization of a targets
workflow differ from a script-based analysis?
|
Duration: 01h 00m | 6. Managing Packages |
How should I manage packages for my targets project?
|
Duration: 01h 12m | 7. Working with External Files | How can we load external data? |
Duration: 01h 24m | 8. Branching | How can we specify many targets without typing everything out? |
Duration: 01h 36m | 9. Parallel Processing | How can we build targets in parallel? |
Duration: 01h 48m | 10. Reproducible Reports with Quarto | How can we create reproducible reports? |
Duration: 02h 00m | Finish |
The actual schedule may vary slightly depending on the topics and exercises chosen by the instructor.
パソコンのセットアップ
以下の手順に従って、必要なソフトウェアを手持ちのパソコンにインストールしましょう。
- Rの最新バージョンをダウンロードして、インストールしましょう。
- RStudioをダウンロードして、インストールしましょう。 RStudioとは、Rの使用を容易にし、多くの素晴らしい追加機能を提供するアプリケーション(統合開発環境、またはIDE)です。 デスクトップ版(無料)が必要です。
- Quartoをダウンロードして、インストールしましょう。 Quartoとは、コードを使用してさまざまな形式のドキュメントを作成するためのプログラムです。 このワークショップでは、動的なレポートを生成するために使用されます。
- 以下のコマンドで必要なRパッケージをインストールしましょう:
R
install.packages(
c(
"conflicted",
"future.callr",
"future",
"palmerpenguins",
"quarto",
"tarchetypes",
"targets",
"tidyverse",
"visNetwork"
)
)
別の方法:クラウドを使う
RStudioと必要なパッケージが全て既にインストールされたPosit Cloudインスタンスが用意されているので、自分のコンピュータに何もインストールする必要はありません。 アカウントを作成する必要があります(無料)。
このリンクをクリックすると開きます: https://posit.cloud/content/6064275