ssd_speed | R Documentation |
User submitted data on 1TB solid state drives (SSD). Compiled from data available on userbenchmark.com on September 1, 2020.
ssd_speed
A data frame with 54 rows and 7 variables.
Brand name of the drive.
Model name of the drive.
Number of user submitted benchmarks.
Physical form of the drive with levels m.2, mSATA or 2.5".
If a drive uses the nvme protocol this value is 1, 0 if it does not.
Average read speed from user benchmarks in MB/s.
Average write speed from user benchmarks in MB/s.
library(ggplot2) ggplot(ssd_speed, aes(read, write, color = form_factor))+ geom_point()+ labs( title = "Average Read v. Average Write", x = "Read Speed (MB/s)", y = "Write Speed (MB/s)" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.