[R] syntax to connect to linked SQL server using RODBC

2016-09-13 Thread Varun Sinha
Hi All, I would like to know how to connect to a "linked server" from R. I find the linked server under Server Objects > Linked Servers on SQL management studio. Here is the current way I am using to connect to the server: dbhandle <- odbcDriverConnect('driver={SQL

Re: [R] source code for dbeta

2015-06-08 Thread Varun Sinha
/19226816/how-can-i-view-the-source-code-for-a-function Mark R. Mark Sharp, Ph.D. msh...@txbiomed.org On Jun 7, 2015, at 4:31 AM, Varun Sinha sinha.varun...@gmail.com wrote: Hi, I am trying to find the source code for dbeta function. I tried edit(dbeta) and this is what I got

[R] source code for dbeta

2015-06-07 Thread Varun Sinha
Hi, I am trying to find the source code for dbeta function. I tried edit(dbeta) and this is what I got: edit(dbeta) function (x, shape1, shape2, ncp = 0, log = FALSE) { if (missing(ncp)) .Call(C_dbeta, x, shape1, shape2, log) else .Call(C_dnbeta, x, shape1, shape2, ncp, log) }