ssd_speed: SSD Speed.

ssd_speedR Documentation

SSD Speed.

Description

User submitted data on 1TB solid state drives (SSD). Compiled from data available on userbenchmark.com on September 1, 2020.

Usage

ssd_speed

Format

A data frame with 54 rows and 7 variables.

brand

Brand name of the drive.

model

Model name of the drive.

samples

Number of user submitted benchmarks.

form_factor

Physical form of the drive with levels m.2, mSATA or 2.5".

nvme

If a drive uses the nvme protocol this value is 1, 0 if it does not.

read

Average read speed from user benchmarks in MB/s.

write

Average write speed from user benchmarks in MB/s.

Source

UserBenchmark

Examples


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)"
 )


npaterno/data_hunter documentation built on July 22, 2022, 10:20 a.m.