Displaying 2 results from an estimated 2 matches for "acon".
Did you mean:
bacon
2007 Jun 27
1
SEM model fit
...ltatt, lam5, 1.2
attn <-> attn, psi2, 0.5
nvatt <-> nvatt, theta4, 0.5
crimatt <-> crimatt, theta5, 0.1
asltatt <-> asltatt, theta6, 0.2
gender -> attn, a4, 0.2
acon -> acon1, NA, 1
acon -> acon2, lam4, 1.5
acon <-> acon, psi2, 0.1
mcon -> mvcon1, NA, 1
mcon -> mvcon2, lam5, 1
mcon <-> mcon,...
2012 Nov 21
1
remote connection to an Oracle database - using RODBC - RMySQL..?
...ess this database - do sql queries and convert the resulting tables into dataframes.
I am a novice in SQL and database access - but a friend provided me with the following approach:
library(DBI)
library(RMySQL)
drvr<-dbDriver("MySQL") #Or another driver, say from the RODBC package?
acon<-dbConnect(drvr, user="ENTER_USERID", dbname="ENTER_NAME", host="ENTER_HOST",
port=1521,password=NULL) #password maybe non-null?
cmds<-dbSendQuery(acon,statement="YOUR SQL QUERY HERE")
yourdata<-fetch(cmds, n=-1) #Collects all rows an...