Začněte nyníZačněte zdarma

Změna formátování textových úseků

Jak bylo právě ukázáno ve videu, RMarkdown nabízí i další možnosti formátování – například tučný text nebo kurzívu. Pojďme je vyzkoušet na prvním odstavci tvého RMarkdown reportu.

Toto cvičení je součástí kurzu

Komunikace s daty v Tidyverse

Zobrazit kurz

Pokyny k cvičení

  • Zvýrazni "International Labour Organization" v první větě jako tučný text. Dej pozor, aby slovo "The" tučně nebylo.
  • Proměň výraz "data sets" v první větě v odkaz na http://www.ilo.org/global/statistics-and-databases/lang--en/index.htm
  • V souhrnu zdůrazni "the reduction in weekly working hours" tak, že z toho uděláš kurzívu.

Interaktivní cvičení na vyzkoušení si v praxi

Vyzkoušejte si toto cvičení dokončením tohoto ukázkového kódu.

{"my_document.Rmd":"---\ntitle: \"The reduction in weekly working hours in Europe\" \nsubtitle: \"Looking at the development between 1996 and 2006\"\nauthor: \"Insert your name here\"\noutput: html_document\n---\n\n## Summary \n\nThe International Labour Organization (ILO) has many data sets on working conditions. For example, one can look at how weekly working hours have been decreasing in many countries of the world, while monetary compensation has risen. In this report, the reduction in weekly working hours in European countries is analysed, and a comparison between 1996 and 2006 is made. All analysed countries have seen a decrease in weekly working hours since 1996 – some more than others.\n\n## Preparations \n\nThis is where you will load the necessary R packages.\n\n## Analysis\n\n### Data\n\nThis is where you will load the data. \n\n### Preprocessing\n\nThis is where you will preprocess the data.\n\n### Results\n\nThis is where you will plot the data.\n\n\n"}
Upravit a spustit kód