squiggle.c/scratchpad/plotting/r/plot.R

8 lines
148 B
R
Raw Permalink Normal View History

2023-10-16 10:39:07 +00:00
library(ggplot2)
data <- read.csv("samples.txt", header = FALSE)
data <- as.data.frame(data)
ggplot(data = data, aes(x = V1)) +
geom_freqpoly()