Displaying 1 result from an estimated 1 matches for "majorgleason".
2011 Jun 20
1
Quick R syntax question
...ample,
Major Gleason Minor Gleason
4 3
5 2
2 4
3 3
I want my output to be:
"4+3"
"5+2"
"2+4"
"3+3"
The quasi-pseudocode in Java is basically:
major = column$majorGleason
minor = column$minorGleason
for item in len(Major Gleason) {
string s = major(item) "+" minor(item);
}
return s;
But trying the same idea in R:
string <- major "+" minor
gives me an error: "unexpected string constant in..."
I would greatly appreciate any help....