You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting the error while running the async example: C:\temp\nodeapps\rtest\example.js:9 if (err) throw err; ^ summarise_each()is deprecated. Usesummarise_all(), summarise_at()orsummarise_if()instead. To mapfunsover all variables, usesummarise_all()
This seems to be an R error, see here. Apparently, summarise_each() is deprecated.
Changing to summarise_all() gets rid of the error and gives the expected output:
I am getting the error while running the async example:
C:\temp\nodeapps\rtest\example.js:9 if (err) throw err; ^
summarise_each()is deprecated. Use
summarise_all(),
summarise_at()or
summarise_if()instead. To map
funsover all variables, use
summarise_all()This seems to be an R error, see here. Apparently, summarise_each() is deprecated.
Changing to summarise_all() gets rid of the error and gives the expected output:
[ { group: '(40,55]', rating: 46.7143, advance: 41.1429 }, { group: '(55,70]', rating: 64.6154, advance: 41.9231 }, { group: '(70,85]', rating: 77.2, advance: 45.5 } ]
The text was updated successfully, but these errors were encountered: