Reading data from Microsoft SQL Server into R

前端 未结 7 773
长发绾君心
长发绾君心 2021-02-01 02:17

Is it possible to read the data stored in MS SQL server from R interface?

If it is I would be also thankful if anyone could show the way to do it.

7条回答
  •  無奈伤痛
    2021-02-01 02:50

    There another option that seems to outperform RODBC and RJDBC

    rsqlserver package written by agstudy.

    Installation:

    require(devtools)
    install_github("rClr", 'jmp75')
    install_github('rsqlserver', 'agstudy',args='--no-multiarch')
    

提交回复
热议问题