
R
Margin100
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
R:包管理
# View the libraries' path.libPaths()# View what pakcages are loaded and availablesearch()# install packageinstall.packages()# update packageupdate.packages()# view installed package...原创 2018-05-17 11:23:06 · 491 阅读 · 0 评论 -
R语言使用32位ODBC源连接Oracle 11g 64位数据库
library(RODBC)conn <- odbcConnect("ZSPT2_11G_32Bit", "zkpt", "ZkpT970")result <- sqlQuery(conn, "select * from zspt2.t_auth_role_authority t")View(result)原创 2018-05-17 11:27:42 · 426 阅读 · 0 评论