将文本与图形并排对齐

align text side by side to figure

如何左图、右文字并左对齐(文字)?

---
title: "Untitled"
author: "George"
date: "12/3/2018"
output:
    flexdashboard::flex_dashboard:
    orientation: rows
runtime: shiny
---

    ```{r global, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(flexdashboard)
library(dplyr)
library(GGally)


x <- c(1,2,3)
y <- c(11,22,33)
z <- data.frame(x, y)
```

Introduction
=======================================================================

### General info

- A

- B



Corr
=======================================================================

### Correlation

Here is some text

- One
- Two

```{r}
renderPlot({
    GGally::ggpairs(z)
})

```

试试这个,这个布局完全填满了页面,并突出了左侧的一个图表,您可以在其中放置您的 img 和两个辅助图表,包括在右侧 - 您可以在其中放置您的文本

 title: "Focal Chart (Left)"
    output: flexdashboard::flex_dashboard
    ---

    Column {data-width=600}
    -------------------------------------

    ### Chart 1

    ```{r}
    ```

    Column {data-width=400}
    -------------------------------------

    ### Chart 2

    ```{r}
    ```   

    ### Chart 3

    ```{r}
    ```