內建資料集

R 擁有大量內建資料集。通常,它們用於教學目的,以建立快速且易於重現的示例。有一個很好的網頁列出了內建資料集:

https://vincentarelbundock.github.io/Rdatasets/datasets.html

瑞士生育率和社會經濟指標(1888 年)資料。讓我們根據農村和天主教人口的統治來檢查生育率的差異。

library(tidyverse) 

swiss %>% 
        ggplot(aes(x = Agriculture, y = Fertility, 
                   color = Catholic > 50))+
        geom_point()+
        stat_ellipse()

StackOverflow 文件