Variables
data <- read.csv("TEAMPERF.csv", header=TRUE)
head(data)
## IntraPers StressMan Mood Rating Project
## 1 14 12 17 High 88.0
## 2 21 13 45 High 86.0
## 3 26 18 6 High 83.5
## 4 30 20 36 High 85.5
## 5 28 23 22 High 90.0
## 6 27 24 28 High 90.5
The data includes 23 observations and five variables: three independent variables and two dependent variables. The three independent variables are all continuous variables, while the two dependent variables are categorical and continuous, respectively. The categorical variable is the rating of the project, which could be “High,” “Overrated,” or “HardWork.” The continuous variable is the mean project score.
Data Plots
library(s20x)
library(ggplot2)
## Warning: package 'ggplot2' was built under R version 4.3.3
data <- read.csv("TEAMPERF.csv", header=TRUE)
stress <- data[1:23, c(2,5)]
pairs20x(stress)

g = ggplot(stress, aes(x=StressMan, y=Project)) + geom_point()
g = g + geom_smooth(method = "loess")
g
## `geom_smooth()` using formula = 'y ~ x'

These plots serve to examine the relationship between a stress management score, and the project average grade. Unfortunately, nothing appears to pop out immediately about the data. We will have to do more analysis to determine if there is a correlation.