我有3个支出表。所有都按“ mem_id”分组。现在,我想按具有日期时间段的任何表格过滤按日期进行的明智搜索。
这是我的代码,但不起作用:
read_html('https://www.ato.gov.au/Rates/Individual-income-tax-for-prior-years/') %>%
html_nodes(xpath = '//tr//*[(((count(preceding-sibling::*) + 1) = 1) and parent::*)]') %>%
html_text()
例如,如果“付款”表中包含2010年1月1日至2010年1月31日之间的日期,而“付款2”表中包含2010年1月15日至2010年1月15日之间的日期,而“付款3”表中包含2010年1月2日至2010年2月28日之间的日期。
如果我想将2010年1月15日过滤到2010年2月28日,则应将所有表中的所有行都放在中间。
如何实现?