Skip to content

Commit

Permalink
RXIxHLAQHrmaQs
Browse files Browse the repository at this point in the history
  • Loading branch information
abresler committed Jan 25, 2023
1 parent f528c9d commit ac6d027
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: nbastatR
Type: Package
Title: R's interface to NBA data
Version: 0.1.151
Version: 0.1.152
Authors@R: c(person("Alex", "Bresler", email = "[email protected]", role = c("aut", "cre")))
Description: NBA data tools for R
License: MIT + file LICENSE
Expand All @@ -25,7 +25,7 @@ Imports:
glue,
stringi,
rvest
RoxygenNote: 7.1.2
RoxygenNote: 7.2.3
URL: https://github.com/abresler/nbastatR
BugReports: https://github.com/abresler/nbastatR/issues
ByteCompile: yes
7 changes: 4 additions & 3 deletions R/game_logs.R
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,7 @@
"slugTeamLoser",
"outcomeGame"
)
), everything()) %>%
suppressMessages()
), everything())
}


Expand Down Expand Up @@ -223,7 +222,9 @@
data %>%
mutate(slugLeague = league) %>%
select(typeResult, typeSeason, yearSeason, everything()) %>%
nest(-c(slugLeague, typeResult, slugSeason, yearSeason), .key = dataTables)
nest(-c(slugLeague, typeResult, slugSeason, yearSeason)) |>
rename(dataTables = data) |>
ungroup()



Expand Down
3 changes: 0 additions & 3 deletions man/scale_per_minute.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion nbastatR.Rproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ StripTrailingWhitespace: Yes

BuildType: Package
PackageUseDevtools: Yes
PackageCleanBeforeInstall: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace

0 comments on commit ac6d027

Please sign in to comment.