Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dplyr function funs() is depreceated #78

Open
joundso opened this issue May 31, 2021 · 0 comments
Open

dplyr function funs() is depreceated #78

joundso opened this issue May 31, 2021 · 0 comments

Comments

@joundso
Copy link

joundso commented May 31, 2021

Unfortunately, I cannot rule out the possibility that this is a mistake on my part.
When I use influxdbr (more precisely the influxdbr::influx_write(...) function) in a Shiny app, the transfer works, but the following warning is thrown:

Warning: `funs()` was deprecated in dplyr 0.8.0.
Please use a list of either functions or lambdas: 

  # Simple named list: 
  list(mean = mean, median = median)

  # Auto named with `tibble::lst()`: 
  tibble::lst(mean, median)

  # Using lambdas
  list(~ mean(., trim = .2), ~ median(., na.rm = TRUE))
This warning is displayed once every 8 hours.
Call `lifecycle::last_warnings()` to see where this warning was generated.

When I manually (not throug the shiny app but normally through the console) establish the connection and send data to InfluxDB using influxdbr::influx_write(...), the warning strangely does not appear in the console.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant