---title: "Quarto20-09-2023"subtitle: "888152"author: "🤑Pannarai Pudongnoi 🤑"institute: "ICDI, CMU"date: "Sep 20, 2023"format: html: code-line-numbers: true # show the line number code-tools: true #share the code #code-fold: true #fold the line of code #backgroundcolor: "#FADAE2" #colourcode need to put "" but for the name do not need #theme: beige highlight-style: haddock #change the color in the chuclk code #revealjs is to make it as a presentation toc: true toc-location: left toc-title: "Topics" footer: "Data viz" #for revealjs only logo: ICDI.logo.png #for revealjs only ---## Quarto```{r}data(cars)str(cars)``````{r}```## Introduction[theme for HTML](https://quarto.org/docs/output-formats/html-themes.html)[theme for revealsjs](https://quarto.org/docs/presentations/revealjs/themes.html)[tabset](https://quarto.org/docs/interactive/layout.html#tabset-panel)## Literature Reviewscontent## Methodologycontent## Resultscontent## Base Plot::: panel-tabset### Codecontent```{r eval =FALSE}plot(cars$speed, cars$dist)```### Resultcontent```{r echo=FALSE}plot(cars$speed, cars$dist)```:::## Base Plot::: panel-tabset### Codecontent```{r}#| eval: falseplot(cars$speed, cars$dist, col ="blue")```### Resultcontent```{r}#| echo: false#| fig-width: 7#| fig-height: 7plot(cars$speed, cars$dist, col ="blue")```:::