Command history in R

前端 未结 6 561
小鲜肉
小鲜肉 2021-02-06 23:31

Is there any IDE -from the ones supporting R-, that gives access to the command history (at least to the current session\'s commands)? Or is there a way to get a (character or e

6条回答
  •  醉话见心
    2021-02-07 00:12

    savehistory('file')
    myhistory <- scan('file','character')
    

    Might do the trick.

提交回复
热议问题