squiggle.c

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

.Rhistory (190B)


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