cpu | R Documentation |
Data on computer processors released between 2010 and 2020.
cpu
A data frame with 875 rows and 12 variables.
Manufacturer of the CPU.
Model name of the processor.
Name given by manufacturer to all chips with this architecture.
Number of compute cores per processor.
The number of threads represents the number of simultaneous calculations that can be ongoing in the processor.
Base speed for the CPU in GHz.
Single-core max speed for the CPU in GHz.
Specifies the type of connection to the motherboard.
Size of the process node used in production in nm.
Size of the level 3 cache on the processor in MB.
Total draw power of the processor.
Date which the processor was released to the public.
library(ggplot2)
# CPU base speed
ggplot(cpu, aes(x = company, y = base_clock)) +
geom_boxplot() +
labs(
x = "Company",
y = "Base Clock (GHz)",
title = "CPU base speed"
)
# Process node size vs. boost speed
ggplot(cpu, aes(x = process, y = boost_clock)) +
geom_point() +
labs(
x = "Process node size (nm)",
y = "Boost Clock (GHz)",
title = "Process node size vs. boost speed"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.