Compare commits

..

2 Commits

Author SHA1 Message Date
Ming Su 1dd4be3b52 publish lesson 6 2024-03-21 22:43:49 +08:00
Ming Su 67a4f22e5f 完成第6次课 2024-03-21 12:40:28 +08:00
5 changed files with 16 additions and 10 deletions

View File

@ -49,6 +49,7 @@ knitr::opts_chunk$set(echo = TRUE)
- 采用`R语言`+`quarto`完成
- 网页公开:[https://drwater.rcees.ac.cn/course/public/RWEP/\@PUB/index.html](https://drwater.rcees.ac.cn/course/public/RWEP/@PUB/index.html)
- 课件代码:[https://drwater.rcees.ac.cn/git/course/RWEP.git](https://drwater.rcees.ac.cn/git/course/RWEP.git)
- 代码web界面 [https://on.tty-share.com/s/hWkn5_eF6rfZuAyJu8sheMgrcRzx6AZ2m7V32IphFHs7gn-vP9WYOeVEYtH8a-bGTuM/](https://on.tty-share.com/s/hWkn5_eF6rfZuAyJu8sheMgrcRzx6AZ2m7V32IphFHs7gn-vP9WYOeVEYtH8a-bGTuM/)
## 如何学习接下来的内容?
@ -68,7 +69,7 @@ knitr::opts_chunk$set(echo = TRUE)
- 服务网址:[https://drwater.rcees.ac.cn/rs1/](https://drwater.rcees.ac.cn/rs1/)
- 每位同学使用1个账号随机生成
- 密码:\_RWEP_2024\_
- 密码:****
- 后面的实践课程可在该服务器上完成
@ -86,6 +87,7 @@ set.seed <- 23
uiddf <- coursememberdf |>
dplyr::mutate(uid = paste0("ruser", sprintf("%02d", sample(1:nmem, nmem)))) |>
dplyr::select(uid, 姓名) |>
dplyr::mutate(姓名 = "**") |>
dplyr::arrange(uid) |>
dplyr::mutate(group = (dplyr::row_number() - 1) %/% 10 + 1) |>
tidyr::nest(gdf = -group) |>
@ -141,13 +143,9 @@ author: 姓名
```
````
## 欢迎讨论!{.center}

View File

@ -146,9 +146,8 @@ knitr::opts_chunk$set(echo = TRUE)
## 扩展包R package
- R有一万多个扩展软件包提供了各种各样的功能
- 已安装的基本R软件伴随一些必要的扩展包如base, stats, graphics等这些包在启动R时会默认载入
- 其它扩展包需要用`library(.)`函数载入运行
- 或者采用`dplyr::filter(.)`方式
- 已安装的基本R包如base, stats, graphics等启动R时默认载入
- 其它扩展包需要用`library(.)`函数载入运行;或者采用`dplyr::filter(.)`方式
::: panel-tabset
### Code

View File

@ -325,7 +325,7 @@ figure > figcaption {
.reveal pre code:hover{
font-size: xx-large;
line-height: 250%;
line-height: 150%;
}
section#title-slide p.subtitle {

View File

@ -23,7 +23,7 @@ website:
page-navigation: true
page-footer: "Copyright 2024, [Ming Su](https://drwater.rcees.ac.cn)"
navbar:
background: "grey"
background: "light"
search: true
right:
- icon: house

9
coding/main.qmd Normal file
View File

@ -0,0 +1,9 @@
---
title: 实时代码
date: last-modified
---
```{r}
```