我有一个Excel文件的数据库,我想在Rstudio上导入它 这是我输入的代码:
library(xlsx)
data=read.xlsx("C:\\Users\\HP\\Desktop\\DATA MINING\\BathSoap.xls", sheetName="BSD", header="TRUE")
但由于excel文件有2个标题,因此R将第2个标题视为变量
请帮帮我
这是电子表格的链接 https://docs.google.com/spreadsheets/d/1sZAPHmHtsx2l7W0CXyfEBwn2cCsS8GdJwXhxELUoXaI/edit?usp=sharing
答案 0 :(得分:0)
这应该可以工作并将第3列读作变量名。
@RequestMapping(value = "/getXml", method = RequestMethod.GET)
public ResponseEntity<String> getXml( HttpServletRequest request)
throws JAXBException {
return returnXml();
}
答案 1 :(得分:0)
尝试在双引号
中给出值header = TRUE而不是TRUE