Learn R Programming

industRial (version 0.1.0)

juice_drymatter: Dry matter content of different juices obtained with two different measurement devices.

Description

This data set contains laboratory measurements of the dry matter content of different fruit juices obtained with two different measurement devices. One of the devices is considered the reference (REF) and the other one is a new device (DRX) on which a linearity and bias study has to be performed.

product

The juice base fruit ("Apple", "Beetroot")

drymatter_TGT

Target drymatter content in [g]

speed

Production line speed

particle_size

Dry matter powder particle size [micrometers]

part

Part number

drymatter_DRX

Drymatter content measured with device DRX

drymatter_REF

Drymatter content measured with reference device

Usage

juice_drymatter

Arguments

Format

An object of class tibble with 108 observations on 7 variables.

References

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

Examples

Run this code
# NOT RUN {
library(dplyr)
# Calculate the bias between the new device and the reference:
juice_drymatter <- juice_drymatter %>% dplyr::mutate(bias = drymatter_DRX - drymatter_REF)
# Establish the analysis of variance:
juice_drymatter_aov <- aov(
     bias ~ drymatter_TGT * speed * particle_size,
     data = juice_drymatter)
summary(juice_drymatter_aov)
# }

Run the code above in your browser using DataLab