-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel.Rmd
43 lines (27 loc) · 858 Bytes
/
Model.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
title: "Data analysis"
author: "Aoyue Bi, Daxing Xu"
date: "`r Sys.Date()`"
output:
html_document: # html_notebook, html_document
toc: true
toc_float:
toc_collapsed: true
toc_depth: 3
number_sections: true
theme: simplex # default, united, cerulean, journal, flatly, darkly, readable, spacelab, united, cosmo, lumen, paper, sandstone, simplex, and yeti
highlight: haddock # default, tango, pygments, kate, monochrome, espresso, zenburn, haddock, and breezedark
# bibliography: bibliography.json
---
# FigS
```{r setup, echo =T, message = T, warning = F}
library(tidyverse)
# library(RColorBrewer)
library(ggpubr)
# library(egg)
## eval 代码要不要运行
## echo 代码要不要输出
## include 图要不要输出
## warning 警告要不要输出
## message 默认Bin等信息要不要输出
```