始める無料で始める

日付の書式設定

レポートに高レベルの情報を追加できたので、日付の表示形式も変えてみましょう。下の動画にある日付書式オプションの表を参照してください。

Date formatting option tables.png

この演習はコースの一部です

R Markdown でレポート作成

コースを見る

演習の手順

  • YAML ヘッダー内の日付を Sys.time() 関数で変更し、日(2桁の小数表示)、月のフルスペル、4桁の西暦の順で表示されるようにしてください。例: 08 April 2020。

実践的なインタラクティブ演習

このサンプルコードを完成させて、この演習に挑戦してみましょう。

{"investment_report.Rmd":"---\ntitle: \"Investment Report\"\nauthor: \"Add your name\"\ndate: \"`r format(___, '___')`\"\noutput: html_document\n---\n\n```{r data, include = FALSE}\nlibrary(readr)\n\ninvestment_annual_summary <- read_csv(\"https://assets.datacamp.com/production/repositories/5756/datasets/d0251f26117bbcf0ea96ac276555b9003f4f7372/investment_annual_summary.csv\")\ninvestment_services_projects <- read_csv(\"https://assets.datacamp.com/production/repositories/5756/datasets/78b002735b6f620df7f2767e63b76aaca317bf8d/investment_services_projects.csv\")\n```\n\n\n## Datasets \n\n### Investment Annual Summary\n\nThe `investment_annual_summary` dataset provides a summary of the dollars in millions provided to each region for each fiscal year, from 2012 to 2018.\n```{r}\ninvestment_annual_summary\n```\n\n### Investment Services Projects\n\nThe `investment_services_projects` dataset provides information about each investment project from the 2012 to 2018 fiscal years. Information listed includes the project name, company name, sector, project status, and investment amounts.\n```{r}\ninvestment_services_projects \n```\n\n\n"}
コードを編集して実行