以下是从中发送数据框作为电子邮件的代码。
OutlookForSend = RDCOMClient::COMCreate("Outlook.Application")
emailToSend = OutlookForSend$CreateItem(0)
emailContents= print(xtable(dataFrameInfo),type = 'html')
emailToSend[["subject"]] = "Info"
emailToSend[["HTMLBody"]] = emailContents
emailToSend[["To"]] = "email address"
emailToSend$Send()
但是,简单的字符串会被翻译和发送。例如
2019 –投影转换为2019 投影
不确定为什么-被翻译为—,以及如何防止其被翻译。