lbenz730 / ncaahoopR

An R package for working with NCAA Basketball Play-by-Play Data
MIT License
198 stars 48 forks source link

ERROR: missing value where TRUE/FALSE needed in assist_net #104

Closed jrbarber37 closed 1 year ago

jrbarber37 commented 1 year ago

Full Season assist_net works

output$AssistPlot <- renderPlot( assist_net(team = "UConn", node_col = "blue", season = "2022-23"), width = 1000, height = 500, outputArgs = list())

But individual games get - ERROR: missing value where TRUE/FALSE needed

output$AssistPlot <- renderPlot( assist_net(team = "UConn", node_col = "blue", season = 401522202), width = 1000, height = 500, outputArgs = list()) }

Thanks

lbenz730 commented 1 year ago

Should now be fixed in latest commit.

jrbarber37 commented 1 year ago

Thanks!

On Mon, Jun 19, 2023 at 11:30 AM Luke Benz @.***> wrote:

Closed #104 https://github.com/lbenz730/ncaahoopR/issues/104 as completed.

— Reply to this email directly, view it on GitHub https://github.com/lbenz730/ncaahoopR/issues/104#event-9569860312, or unsubscribe https://github.com/notifications/unsubscribe-auth/AUIJZH3ZZLKYB6NXCG5IS4DXMBWCXANCNFSM6AAAAAAZHE2KII . You are receiving this because you authored the thread.Message ID: @.***>

jrbarber37 commented 1 year ago

This is all working great!