Update app.R
Browse files
app.R
CHANGED
|
@@ -104,6 +104,8 @@ MLB25 <- download_private_parquet("TimStats/StatcastDataAll", "MLB25.parquet")
|
|
| 104 |
MLB25$level <- "MLB"
|
| 105 |
AAA25 <- download_private_parquet("TimStats/StatcastDataAll", "AAA25.parquet")
|
| 106 |
AAA25$level <- "AAA"
|
|
|
|
|
|
|
| 107 |
#ST <- read.csv("SpringT25.csv", header = TRUE, check.names = FALSE, fileEncoding = "UTF-8")
|
| 108 |
|
| 109 |
#names(ST)
|
|
@@ -112,6 +114,7 @@ AAA <- download_private_parquet("TimStats/StatcastDataAll", "AAA.parquet")
|
|
| 112 |
FSL <- download_private_parquet("TimStats/StatcastDataAll", "FSL.parquet")
|
| 113 |
MLB <- rbind(MLB,MLB25)
|
| 114 |
AAA <- rbind(AAA,AAA25)
|
|
|
|
| 115 |
|
| 116 |
is_barrel <- function(df) {
|
| 117 |
df$hit_speedr <- round(df$hit_speed)
|
|
|
|
| 104 |
MLB25$level <- "MLB"
|
| 105 |
AAA25 <- download_private_parquet("TimStats/StatcastDataAll", "AAA25.parquet")
|
| 106 |
AAA25$level <- "AAA"
|
| 107 |
+
FSL25 <- download_private_parquet("TimStats/StatcastDataAll", "FSL25.parquet")
|
| 108 |
+
FSL25$level <- "FSL"
|
| 109 |
#ST <- read.csv("SpringT25.csv", header = TRUE, check.names = FALSE, fileEncoding = "UTF-8")
|
| 110 |
|
| 111 |
#names(ST)
|
|
|
|
| 114 |
FSL <- download_private_parquet("TimStats/StatcastDataAll", "FSL.parquet")
|
| 115 |
MLB <- rbind(MLB,MLB25)
|
| 116 |
AAA <- rbind(AAA,AAA25)
|
| 117 |
+
FSL <- rbind(FSL,FSL25)
|
| 118 |
|
| 119 |
is_barrel <- function(df) {
|
| 120 |
df$hit_speedr <- round(df$hit_speed)
|