Module # 11 assignment

 



CODE: 

> # Load required libraries

> library(ggplot2)

> library(ggthemes)

> # Sample data

> data <- data.frame(

+     x = rnorm(100),

+     y = rnorm(100)

+ )

> # Create scatter plot

> scatter_plot <- ggplot(data, aes(x = x, y = y)) +

+     geom_point() +

+     theme_tufte()

> # Display plot

> scatter_plot

Comments

Popular posts from this blog

Final Project - Self Harm and Substance Abuse Deaths Worldwide

Final Project [LIS4317]

Module # 3 assignment