✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
/* tables with alternating shading */
.table_shade {
border-collapse: collapse;
border-spacing: 0;
border:1px solid #FFFFFF;
background-color: #FFFFFF;
}
.table_shade th {
border:1px solid #FFFFFF;
background: #D5D5D5;
}
.table_shade td {
border:1px solid #FFFFFF;
}
.table_shade .odd {
background: #EEEEEE;
}
.table_shade .even {
background: #FBFBFB;
}
Se ha realizado un experimento, en el que se mide el tiempo requerido para realizar un cálculo (variable ), empleado tres marcas comerciales de software (factor ) y dos marcas comperciales de CPUs (factor ).
A continuación se muestran los datos (se pueden copiar y pegar en R):
#----------------------------------------------------------------
datos <- data.frame(
x1 = c(1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3),
x2 = c(1, 1, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2),
y = c(1.8, 9.3, 12.0, 8.4, 7.6, 5.8, 11.1, 4.9, 11.1, 8.2, 1.7, 6.3)
)
#----------------------------------------------------------------
Analizar los datos y señalar la opción correcta ().