Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to export RMarkdown file to HTML document with two columns?

Tags:

html

r

r-markdown

I am putting together an R Markdown HTML page for some new R users at my work to give them an introduction and walk them through some simple demos.

While showing off things like head and tail, it ends up looking messy and long because it prints out each output one after the other. I would like them as long as other sections of my .Rmd to be split into two columns.

In my research, I came across this question. There was some discussion of workarounds with HTML code I did not understand.

I did try including:

<div class="columns-2">    </div> 

from the official rmarkdown documentation, but it did not have any effect.

As I was ready to give up, there was a comment on the Stack Overflow question by @Molx saying that you can separate columns with ***, but it did not give any further explanation. I tried it out in a few ways: I included the *** in the middle of my R code chunk, I separated my R code chunks and put the *** between the two. When I did the latter, the *** simply became a horizontal rule and did nothing with columns.

I am hoping to avoid tables and CSS if possible.

like image 934
bryanR Avatar asked Jul 31 '15 19:07

bryanR


People also ask

How do I export RMarkdown to HTML?

To transform your markdown file into an HTML, PDF, or Word document, click the “Knit” icon that appears above your file in the scripts editor. A drop down menu will let you select the type of output that you want. When you click the button, rmarkdown will duplicate your text in the new file format.

How do I make two columns in Markdown?

kramdown just requires that in your markdown page where you intend to use said HTML, you add an attribute to the wrapping HTML element of markdown="1" . As an example (and direct solution to two-column markdown), this results in two columns for content.

How do I show all columns in R Markdown?

options(tibble. width = Inf) # displays all columns. options(tibble. print_max = Inf) # to show all the rows.


1 Answers

rmarkdown file:

#### Put in your css file or directly in rmarkdown  <style>   .col2 {     columns: 2 200px;         /* number of columns and width in pixels*/     -webkit-columns: 2 200px; /* chrome, safari */     -moz-columns: 2 200px;    /* firefox */   }   .col3 {     columns: 3 100px;     -webkit-columns: 3 100px;     -moz-columns: 3 100px;   } </style>  #### This section will have three columns  <div class="col3"> **1** one   **2** two   **3** three   **4** four   **5** five   **6** six   **7** seven   **8** eight   **9** nine   </div>  #### This section will have two columns  <div class="col2"> ```{r} head(mtcars) tail(mtcars) ``` </div> 

Gives me this

enter image description here


Edit

To be more precise with the column elements, you can use a div for each set of elements:

Rmd file

<style> .column-left{   float: left;   width: 33%;   text-align: left; } .column-center{   display: inline-block;   width: 33%;   text-align: center; } .column-right{   float: right;   width: 33%;   text-align: right; } </style>  #### This section will have three columns  <div class="column-left"> **1** one   **2** two   </div> <div class="column-center"> **3** three   **4** four   **5** five   **6** six   </div> <div class="column-right"> **7** seven   **8** eight   **9** nine   </div> 

Gives me

enter image description here

like image 139
rawr Avatar answered Oct 14 '22 21:10

rawr