Nuhu - Et - Al: Sanjeet Jakati 4/1/2021

You might also like

You are on page 1of 4

Nuhu_et.

al
Sanjeet Jakati

4/1/2021
library(readxl)
nuhu <- read_excel("nuhu.xlsx")
View(nuhu)
attach(nuhu)
nuhu

## # A tibble: 6 x 7
## gum moisture green dry permeability hardness index
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 2.5 52 376 178 55 82
## 2 2 2.4 56 378 161. 57 80
## 3 3.5 2.2 72 380 160 59 73
## 4 5 2.2 84 400 154. 62 70
## 5 6.5 2.1 94 412 150. 64 62
## 6 8 2 102 436 140. 62 58

library(ggplot2)
qplot(gum,moisture)
qplot(dry,gum)

qplot(green,dry)
qplot(permeability,dry)

qplot(hardness,dry)
qplot(index,dry)

You might also like