ggplot(aes(bill_length_mm, flipper_length_mm, fill = sex)) + geom_jitter(size = 3, alpha = 0.5, shape = 21) point_plot #第2个图 point_plot2 <- dat %>% ggplot(aes(bill_length_mm, bill_depth_mm, fill = sex)) + geom_jitter(size = 3, alpha = 0.5, shape = 21) point_pl...
ggplot(aes(bill_length_mm, flipper_length_mm, fill = sex)) + geom_jitter(size =3, alpha =0.5, shape =21) point_plot #第2个图 point_plot2 <- dat %>% ggplot(aes(bill_length_mm, bill_depth_mm, fill = sex)) + geom_jitter(size =3, alpha =0.5, shape =21) point_plot2 #第...
.gitignore CODE_OF_CONDUCT.md CONTRIBUTING.md DESCRIPTION LICENSE LICENSE.md Makefile NAMESPACE NEWS.md README.Rmd README.md _pkgdown.yml thematic.Rproj README Code of conduct License MIT license thematic Simplified theming of{ggplot2},{lattice}, and{base}R graphics. In addition to providing...
.gitignore dev add annotation Apr 26, 2024 DESCRIPTION added save ggplot multi module Jan 30, 2025 LICENSE update LICENSE Oct 11, 2018 NAMESPACE import %||% from rlang Jan 30, 2025 NEWS.md fixed specific color module Sep 18, 2024 ...
git init git add*git commit-m"first commit"git remote add origin https://github.com/jmzeng1314/biotrainee.git git push-u origin master 然后就大功告成啦! https://github.com/jmzeng1314/biotrainee 如果更新了项目(新加了文件),这个是最高频需求,就添加即可: ...
### 摘要 RStudio 是一款专为 R 语言设计的集成开发环境(IDE),它不仅提供了功能丰富的控制台和具备语法高亮的代码编辑器,还配备了一系列强大的工具,如绘图工具、历史记录管理、调试工具及工作空间管理功能。通过使用 RStudio,用户可以更加高效地进行数据分析与可视化工作。本文将通过多个代码示例,帮助读者深入了解 R...
git config --global user.name userName git config --global user.email userEmail 分支1 标签1 Painteradd |> operator6e0314a4年前 11 次提交 提交 R add |> operator 4年前 assets Initial commit 6年前 inst add |> operator 4年前 man
git config remote.origin.url git@github.com:ewenharrison/test.git git pull -u origin master git push -u origin master You have now pushed your commit to GitHub, and should be able to see your files in your GitHub account. ThePull Pushbuttons in RStudio will now also work. Remember, ...
One of the things that got the crowd really excited was thescales::show_col()function which allows you to check out colors inside a palette. This function is well-known to a lot of {ggplot2} color palette package creators (including myself for{tvthemes}) to showcase all the great new...
ggplot(aes(x = .panel_x, y = .panel_y, fill = sex)) + geom_point(alpha =0.5, size =2, shape =21) + facet_matrix( vars(bill_length_mm, flipper_length_mm, bill_depth_mm, body_mass_g) ) dat %>% ggplot + geom_boxplot( ...