keyword_table {akc} | R Documentation |
Display the table with different groups of keywords
Description
Display the result of network-based keyword clustering, with frequency information attached.
Usage
keyword_table(tibble_graph, top = 10)
Arguments
tibble_graph |
A |
top |
How many keywords should be displayed in the table for each group. Default uses 10.If there is a tie,more than top keywords would be selected. To show all the keywords, use Inf. |
Value
A tibble with two columns, namely group and keywords with frequency attached. Different keywords are separated by semicolon(';').
See Also
Examples
library(akc)
bibli_data_table %>%
keyword_clean(id = "id",keyword = "keyword") %>%
keyword_group(id = "id",keyword = "keyword") %>%
keyword_table()
[Package akc version 0.9.9 Index]