We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Initially, I tried to call link_stats_table as shown below. I used ToTDlyVol for both the volume and group_field variable.
link_stats_table
ToTDlyVol
volume
group_field
link_stats <- link_stats_table( tbl, volume = "ToTDlyVol", count = "Daily.Counts", group_field = "ToTDlyVol", type = "flow" )
This led to the following error message:
Error in summarise_impl(.data, dots) : ‘sum’ not meaningful for factors
To correct this, I made a copy of the ToTDlyVol field to use as the grouping variable.
link_stats <- link_stats_table( tbl, volume = "ToTDlyVol", count = "Daily.Counts", group_field = "vol_group", type = "flow" )
It would be nice to improve the function to be able to use the same field for both variables.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Initially, I tried to call
link_stats_table
as shown below. I usedToTDlyVol
for both thevolume
andgroup_field
variable.This led to the following error message:
Error in summarise_impl(.data, dots) : ‘sum’ not meaningful for factors
To correct this, I made a copy of the
ToTDlyVol
field to use as the grouping variable.It would be nice to improve the function to be able to use the same field for both variables.
The text was updated successfully, but these errors were encountered: