文字通知 R

Text notification R

I 运行 R 中的模拟通常需要很长时间(几天或几周)。模拟完成后,是否可以让 R 向我发送短信通知?

see 可以设置 alarm 但我不知道如何设置文本通知。

这是一个使用 RPushbullet 向您发送通知的简单代码:

library(RPushbullet)
pbPost(title="Simulations are completed",
  apikey="KEY HERE", #API key is found in account settings
  devices="DEVICE ID HERE") #Device ID's are found on devices page.

apikey 位于您的帐户设置中(并且是免费的)

可以通过单击每个设备并将值粘贴到等号(如下面的 X 所示)后找到设备 ID。

www.pushbullet.com/?device_iden=XXXXXXXXXXXXXXXX

如评论中所述,描述了更复杂的方法 here and here