我想使用ggplot2仅绘制条形图中的前10个(最高频率)类别,而不是所有类别。只能通过使用ggplot来做到这一点吗?我是通过如下创建辅助数据框来实现的
for link in soup.find_all('a'):
try:
fragment_id = link['href'].rsplit('#', maxsplit=1)[1]
except IndexError:
# the `rsplit` returned only one string, meaning '#' wasn't found in the string
continue
footnote = link.find_next('a', {'id': fragment_id})
if footnote:
# a matching footnote has been found
# you can add attributes to it by modifying `footnote`
我想知道是否只能通过ggplot2命令才能做到这一点。