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
NA in contact IDs is treated as a single node, resulting in incorrect clustering.
NA
In the example below, 1 -> NA and NA -> 2 is interpreted as a single cluster, when really these NA nodes are most likely different:
1 -> NA
NA -> 2
> net <- make_epicontacts(data.frame(id = 1:2), + data.frame(from = c(1, NA), + to = c(NA, 2))) > get_clusters(net)$linelist id cluster_member cluster_size 1 1 1 3 2 2 1 3 3 NA 1 3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NA
in contact IDs is treated as a single node, resulting in incorrect clustering.In the example below,
1 -> NA
andNA -> 2
is interpreted as a single cluster, when really theseNA
nodes are most likely different:The text was updated successfully, but these errors were encountered: