search for: lettermatch

Displaying 2 results from an estimated 2 matches for "lettermatch".

2010 Mar 08
1
compare tables
.... Then, when the first output table is finished I go on comparing the first "creator" table with the second table in the output, row for row for all columns. 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...
2010 Jan 09
3
string functions
Hi! Does anybody know a string function that would calculate how many characters two strings share? I.e. ("Hello World","Hello Peter") would be 7. Thanks. Laetitia