Add analysis for increasing
This commit is contained in:
parent
b1fef82630
commit
b2c8ac222b
1 changed files with 13 additions and 0 deletions
13
increasing_size_analysis.R
Normal file
13
increasing_size_analysis.R
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
library(ggplot2)
|
||||
library(here)
|
||||
library(tidyverse)
|
||||
library(stringr)
|
||||
|
||||
flist <- list.files(here("results/increasing_size/"), full.names = TRUE) |> str_sort(numeric = TRUE)
|
||||
|
||||
res_df <- do.call("rbind", lapply(flist, readRDS))
|
||||
ggplot(res_df, aes(x = n2, y = time)) +
|
||||
geom_point()
|
||||
|
||||
ggplot(res_df, aes(x = n2, y = ari_col)) +
|
||||
geom_point()
|
||||
Loading…
Add table
Reference in a new issue