Learn R Programming

mistat (version 0.999)

INSERTION: Components Insertions into a Board

Description

Data represents a large number of insertions with $k=9$ different components. The result of each trial (insertion) is either Success (no insertion error) or Failure (insertion error).

Usage

data(INSERTION)

Arguments

source

See PLACE

Details

Components are: C1: Diode C2: 1/2 Watt Canister C3: Jump Wire C4: Small Corning C5: Large Corning C6: Small Bullet C7: 1/8 Watt Dogbone C8: 1/4 Watt Dogbone C9: 1/2 Watt Dogbone

Examples

Run this code
data(INSERTION)

barplot(INSERTION$fail / 
          (INSERTION$fail + INSERTION$succ) * 
          100, 
        names.arg=INSERTION$comp, 
        ylab= "Percentage")

Run the code above in your browser using DataLab