Update app.R
Browse files
app.R
CHANGED
|
@@ -224,7 +224,7 @@ addChecks <- function(df){
|
|
| 224 |
StrikeCheck = case_when(description %in% c('Called Strike','Foul','Foul Bunt','Foul Pitchout',
|
| 225 |
'Foul Tip','In play, no out','In play, out(s)',
|
| 226 |
'In play, run(s)','Missed Bunt','Pitchout',
|
| 227 |
-
'Swinging
|
| 228 |
BallCheck = case_when(description %in% c('Ball','Ball In Dirt','Hit By Pitch') ~ TRUE, TRUE ~ FALSE),
|
| 229 |
SweetSpotCheck = case_when(between(hit_angle,10,30) ~ TRUE, TRUE ~ FALSE),
|
| 230 |
HardHitCheck = case_when(hit_speed >= 95 ~ TRUE, TRUE ~ FALSE),
|
|
@@ -235,7 +235,7 @@ addChecks <- function(df){
|
|
| 235 |
`Home Run` = case_when(result == "Home Run" & InPlayCheck == TRUE ~ TRUE, TRUE ~ FALSE),
|
| 236 |
WalkCheck = case_when(balls >= 4 & result == "Walk" ~ TRUE, TRUE ~ FALSE),
|
| 237 |
HBPCheck = case_when(description == "Hit By Pitch" & result == "Hit By Pitch" ~ TRUE, TRUE ~ FALSE),
|
| 238 |
-
StrikeoutCheck = case_when(strikes >= 3 & result %in% c("Strikeout",'
|
| 239 |
SacrificeCheck = case_when(InPlayCheck == TRUE & result %in% c('Sac Fly','Sac Bunt',
|
| 240 |
'Sac Fly Double Play','Sac Bunt Double Play') ~ TRUE, TRUE ~ FALSE),
|
| 241 |
IBBCheck = case_when(pitchNum == 1 & result == "Intent Walk" ~ TRUE, TRUE ~ FALSE),
|
|
|
|
| 224 |
StrikeCheck = case_when(description %in% c('Called Strike','Foul','Foul Bunt','Foul Pitchout',
|
| 225 |
'Foul Tip','In play, no out','In play, out(s)',
|
| 226 |
'In play, run(s)','Missed Bunt','Pitchout',
|
| 227 |
+
'Swinging Strike','Swinging Strike (Blocked)') ~ TRUE, TRUE ~ FALSE),
|
| 228 |
BallCheck = case_when(description %in% c('Ball','Ball In Dirt','Hit By Pitch') ~ TRUE, TRUE ~ FALSE),
|
| 229 |
SweetSpotCheck = case_when(between(hit_angle,10,30) ~ TRUE, TRUE ~ FALSE),
|
| 230 |
HardHitCheck = case_when(hit_speed >= 95 ~ TRUE, TRUE ~ FALSE),
|
|
|
|
| 235 |
`Home Run` = case_when(result == "Home Run" & InPlayCheck == TRUE ~ TRUE, TRUE ~ FALSE),
|
| 236 |
WalkCheck = case_when(balls >= 4 & result == "Walk" ~ TRUE, TRUE ~ FALSE),
|
| 237 |
HBPCheck = case_when(description == "Hit By Pitch" & result == "Hit By Pitch" ~ TRUE, TRUE ~ FALSE),
|
| 238 |
+
StrikeoutCheck = case_when(strikes >= 3 & result %in% c("Strikeout",'Strikeout Double Play') ~ TRUE, TRUE ~ FALSE),
|
| 239 |
SacrificeCheck = case_when(InPlayCheck == TRUE & result %in% c('Sac Fly','Sac Bunt',
|
| 240 |
'Sac Fly Double Play','Sac Bunt Double Play') ~ TRUE, TRUE ~ FALSE),
|
| 241 |
IBBCheck = case_when(pitchNum == 1 & result == "Intent Walk" ~ TRUE, TRUE ~ FALSE),
|