gpt4 book ai didi

python - 如何从 R 中的 xlsx 文件中检测 "strikethrough"样式

转载 作者:行者123 更新时间:2023-11-28 21:35:34 28 4
gpt4 key购买 nike

在R中导入excel文件时,我必须检查包含“删除线”格式的数据

我们有什么方法可以检测到它们吗?
欢迎使用 R 和 Python 方法

最佳答案

R-溶液tidyxl -package 可以帮助你...
例如 temp.xlsx,数据位于第一张纸的 A1:A4 上。下面是一个excel截图:
enter image description here

library(tidyxl)

formats <- xlsx_formats( "temp.xlsx" )
cells <- xlsx_cells( "temp.xlsx" )

strike <- which( formats$local$font$strike )
cells[ cells$local_format_id %in% strike, 2 ]

# A tibble: 2 x 1
# address
# <chr>
# 1 A2
# 2 A4

关于python - 如何从 R 中的 xlsx 文件中检测 "strikethrough"样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52107584/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com