From 8be308ebc66bb9ac347c64934e082232d5c2a9c3 Mon Sep 17 00:00:00 2001 From: Xinyuan Chu Date: Thu, 5 Oct 2023 02:45:55 +0800 Subject: [PATCH] Optimizes the format of R code in the index.qmd file --- index.qmd | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.qmd b/index.qmd index 343ef69b16..25516c1a62 100644 --- a/index.qmd +++ b/index.qmd @@ -117,11 +117,9 @@ format: #| warning: false library(ggplot2) - ggplot(airquality, aes(Temp, Ozone)) + geom_point() + - geom_smooth(method = "loess" -) + geom_smooth(method = "loess") ```