battery_charging: Charging time of a lithium-ion battery.

Description Usage Format Source References Examples

Description

A data set with charging time in hours required to recharge a lithium-ion battery based on a full factorial design of experiment with four variables (A, B, C, D) coded as +/- 1. Design effects are coded as numerical variables in order to allow to build models without coding the contrasts and then to make predictions on a continuous range from -1 to +1.

A

Variable A (numerical)

B

Variable B (numerical)

C

Variable B (numerical)

D

Variable B (numerical)

Replicate

The independent repeat of each unique factor combination.

charging_time

Battery charging time [h]

Usage

1

Format

A tibble with 32 observations on 6 variables.

Source

Original data set.

References

For a complete case study application refer to https://j-ramalho.github.io/industRial/.

Examples

1
2
3
4
5
6
7
8
9
data(battery_charging)
head(battery_charging)

# Building a linear model:
battery_lm <- lm(
    formula = charging_time ~ A * B * C, 
    data = battery_charging
)
summary(battery_lm)

industRial documentation built on June 11, 2021, 5:10 p.m.