squiggle.c

Self-contained Monte Carlo estimation in C99
Log | Files | Refs | README

plot.R (148B)


      1 library(ggplot2)
      2 
      3 data <- read.csv("samples.txt", header = FALSE)
      4 data <- as.data.frame(data)
      5 
      6 ggplot(data = data, aes(x = V1)) +
      7   geom_freqpoly()