Displaying 2 results from an estimated 2 matches for "output_t".
Did you mean:
output_to
2010 Mar 08
1
compare tables
...I do this for all iterations.
The first "creator" table is called "data_mc".
# apply similarity function (lettermatch) to my data
for (i in 1:(nrow(data_mc))){
for (y in 1:(ncol(data_mc))) {
creator_table <- data_mc[data_mc$Status=="mother",y]
output_tables <- ???
output[i,y]<-(lettermatch(creator_table, output_tables))
}
}
Could you please help me how I have to call up the output tables in
the way I need them (described above) for the function "lettermatch"?
Maybe I need to change the format of the output file?...
2008 Dec 12
1
Avoiding multiple outputs using RODBC package
I am using R as a data manipulation tool for a SQL database. So in some of
my R scripts I use the RODBC package to retreive data, then run analysis,
and use the sqlSave function in the RODBC package to store the results in a
database.
There are two problems I want to avoid, and they are highly related: (1)
having R rerun analysis which has already been done and saved into output
database table,