This commit is contained in:
2025-12-06 12:26:34 +01:00
commit 657e7a6971
2 changed files with 12 additions and 0 deletions

1
cpubenchmark.json Normal file

File diff suppressed because one or more lines are too long

11
data.R Normal file
View File

@@ -0,0 +1,11 @@
library(jsonlite)
library(data.table)
library(ggplot2)
init <- function() {
j <<- fromJSON("cpubenchmark.json")
d <<- j$data
setDT(d)
d[, price := as.numeric(gsub("[\\$,]", "", price))]
dd <<- \() d[ grepl(s, name), ]
}