-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_quarto.yml
80 lines (80 loc) · 1.97 KB
/
_quarto.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
project:
type: book
output-dir: docs
book:
title: R语言入门指南
author: Shalom
date: 2024/12/22
repo-url: https://github.com/shalom-lab/r-book/
repo-actions:
- edit
- issue
cover-image: images/cover.png
page-footer:
center:
- Copyright 2024, R语言与可视化
- icon: rss
href: https://blog.rlearner.com/
- icon: github
href: https://shalom-lab.github.io/r-book/
chapters:
- index.qmd
- part: 基础篇
chapters:
- text: 安装
href: chapter/base/install.qmd
- text: Rstudio
href: chapter/base/rstudio.qmd
- text: 运算符
href: chapter/base/operator.qmd
- text: 数据类型
href: chapter/base/data_type.qmd
- text: 数据框
href: chapter/base/dataframe.qmd
- text: R包
href: chapter/base/package.qmd
- text: 函数
href: chapter/base/function.qmd
- text: 常用函数
href: chapter/base/common_function.qmd
- text: 数据读写
href: chapter/base/data_io.qmd
- text: 向量化
href: chapter/base/vector.qmd
- part: 清理篇
chapters:
- text: tidyverse
href: chapter/clean/tidyverse.qmd
- text: 管道符%>%
href: chapter/clean/pipe.qmd
- text: 必会操作
href: chapter/clean/dplyr.qmd
- text: 日期处理
href: chapter/clean/date.qmd
- text: 字符串处理
href: chapter/clean/string.qmd
- text: 常用技巧
href: chapter/clean/tips.qmd
- text: 长宽数据转换
href: chapter/clean/wider_longer.qmd
- part: 数据可视化
chapters:
- text: 基础包绘图
href: chapter/viz/base_plot.qmd
- text: 柱状图
href: chapter/viz/bar_plot.qmd
- text: ggplot
href: chapter/viz/ggplot.qmd
- part: 统计
chapters:
- text: 基础
href: chapter/stats/base.qmd
- text: 分布
href: chapter/stats/distribution.qmd
format:
html:
theme: cosmo
toc-title: 目录
df-print: paged
editor: source
lang: zh