This commit is contained in:
2025-12-06 12:29:00 +01:00
parent 657e7a6971
commit 050dc14cae

11
analysis.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), ]
}