SPECint2006 {nutshell}R Documentation

SPECint2006 Results

Description

This data set contains results from the SPECint2006 benchmarks.

Usage

data(SPECint2006)

Format

A data frame with 1233 observations on the following 9 variables.

Benchmark
a factor with levels CINT2006
Hardware.Vendor
a factor representing the name of the vendor
System
a factor representing the name of the system
Num.Cores
a numeric vector representing the number of cores on the system
Num.Chips
a numeric vector representing the number of CPUs on the system
Num.Cores.Per.Chip
a numeric vector
Result
a numeric vector representing the benchline result
Baseline
a numeric vector representing the baseline result
Published
a factor representing the month in which the benchmark was published

Details

This data set is used an example in the book "R in a Nutshell" from O'Reilly Media.

Source

http://www.spec.org/cpu2006/

Examples

data(SPECint2006)
t.test(subset(SPECint2006,Num.Chips==1&Num.Cores==2)$Baseline,
       subset(SPECint2006,Num.Chips==1&Num.Cores==2)$Result,
       paired=TRUE)

[Package nutshell version 1.0 Index]