시작하기무료로 시작하기

텍스트 조각의 서식 바꾸기

방금 비디오에서 본 것처럼, RMarkdown에는 굵게기울임 같은 더 많은 서식 옵션이 있어요. RMarkdown 보고서의 첫 번째 문단에 적용해 볼게요.

이 연습은 강의의 일부입니다

Tidyverse로 데이터 소통하기

강의 보기

연습 안내

  • 첫 문장의 "International Labour Organization"을(를) 굵게 표시하세요. 단, "The"까지 굵게 만들지 않도록 주의하세요.
  • 첫 문장의 "data sets"를 다음 링크로 바꾸세요: http://www.ilo.org/global/statistics-and-databases/lang--en/index.htm
  • 요약 부분에서 "the reduction in weekly working hours"기울임 텍스트로 바꿔 강조하세요.

실습형 인터랙티브 연습

이 예제를 이 샘플 코드를 완성하여 풀어보세요.

{"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"}
코드 편집 및 실행