Test post 1

This is a test post

Here are some bullet points:

  1. Bullet point

  2. Table

    Code from the kableExtra package copied straight from this vignette

        library(kableExtra)
        library(knitr)
        dt <- mtcars[1:5, 1:6]
        kable(dt, format = "html", align = "c") %>%
          kable_styling(bootstrap_options = c("striped", "hover"), full_width = T,position = "left") %>%
          column_spec(1, width = "10em") %>% 
          column_spec(2, width = "7em") %>% 
          column_spec(3, width = "7em") %>% 
          column_spec(4, width = "7em") %>% 
          column_spec(5, width = "7em") %>% 
          column_spec(6, width = "7em") %>% 
          footnote(general = "Here is a general comments of the table. ",
                   number = c("Footnote 1; ", "Footnote 2; "),
                   alphabet = c("Footnote A; ", "Footnote B; "),
                   symbol = c("Footnote Symbol 1; ", "Footnote Symbol 2")
          )
    mpg cyl disp hp drat wt
    Mazda RX4 21.0 6 160 110 3.90 2.620
    Mazda RX4 Wag 21.0 6 160 110 3.90 2.875
    Datsun 710 22.8 4 108 93 3.85 2.320
    Hornet 4 Drive 21.4 6 258 110 3.08 3.215
    Hornet Sportabout 18.7 8 360 175 3.15 3.440
    Note:
    Here is a general comments of the table.
    1 Footnote 1;
    2 Footnote 2;
    a Footnote A;
    b Footnote B;
    * Footnote Symbol 1;
    Footnote Symbol 2
  3. Bullet 3

    It seems the kableExtra table doesn’t publish the same format as that detailed in the R viewer. Here is the image for the above table saved from the viewer.

 
comments powered by Disqus