rug-fft 0.1.2

FFT implementations for rug integers
Documentation
1
2
3
4
5
6
7
8
9
#!/usr/bin/env Rscript

library(tidyverse)
path <- commandArgs(trailingOnly=TRUE)[1]
data <- read_csv(path)
ggplot(data) +
    geom_line(aes(x = logsize, y = time, color = fft)) +
    scale_y_continuous(trans = "log2")