Description Usage Format Details Source Examples
This data set contains results from the SPECint2006 benchmarks.
1 |
A data frame with 1233 observations on the following 9 variables.
Benchmarka factor with levels CINT2006
Hardware.Vendora factor representing the name of the vendor
Systema factor representing the name of the system
Num.Coresa numeric vector representing the number of cores on the system
Num.Chipsa numeric vector representing the number of CPUs on the system
Num.Cores.Per.Chipa numeric vector
Resulta numeric vector representing the benchline result
Baselinea numeric vector representing the baseline result
Publisheda factor representing the month in which the benchmark was published
This data set is used an example in the book "R in a Nutshell" from O'Reilly Media.
http://www.spec.org/cpu2006/
1 2 3 4 | data(SPECint2006)
t.test(subset(SPECint2006,Num.Chips==1&Num.Cores==2)$Baseline,
subset(SPECint2006,Num.Chips==1&Num.Cores==2)$Result,
paired=TRUE)
|
Loading required package: nutshell.bbdb
Loading required package: nutshell.audioscrobbler
Paired t-test
data: subset(SPECint2006, Num.Chips == 1 & Num.Cores == 2)$Baseline and subset(SPECint2006, Num.Chips == 1 & Num.Cores == 2)$Result
t = -21.804, df = 111, p-value < 2.2e-16
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-1.957837 -1.631627
sample estimates:
mean of the differences
-1.794732
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.