I have created two tables in R that I would like to put side by side in conditional chunks in an R Markdown document. I managed to get the tables side by side, but they are now attached to each other. However, I would like them to have some space in between. Any ideas?
<TABLE BORDER=0>
<TR>
<TD>
```{r, eval=('May' %in%years), echo = FALSE}
table.MAY.odd
```
</TD>
<br>
<TD>
```{r, eval=('May' %in%years), echo = FALSE}
table.MAY.even
```
</TD>
</TR>
</TABLE>