search for: valkonen

Displaying 4 results from an estimated 4 matches for "valkonen".

Did you mean: valkeinen
2007 Jan 15
2
How to detect if R is running on Mac OS X?
This question is probably trivial, but I don't find the answer. I have code that is different for Windows, Unix/Linux and Mac OSX. The man page of .Platform tells that .Platform$OS.type is the right way to test for it... but it also tels that it returns either "windows" or "unix". Is Mac OS X reported as "unix"? If yes, how do I make the difference? Thanks,
2006 Aug 11
2
tkinsert
Dear List, I'm looking for some informations about the function "tkinsert()". I d'like to write lot of command in my text window and after to evaluate it with a button "Submit" for example, but i have some problems: here a exemple of my code: 1) My first problem tt=tktoplevel() txt=tktext(tt,height=40) tkpack(txt) var1=paste("x=2")
2010 Feb 15
29
webgen 0.5.11 released
...f [Tag::Langbar][1] (requested by Damien Robert) - Removed dependency on facets - All deprecated methods have been removed * Bug fixes: - Fixed atom feed template to produce completely valid feeds - Fixed order of feed entries (now sorted from most recent to oldest) (reported by Tuomo Valkonen) - Fixed error in `SourceHandler::Virtual` when creating virtual directories (reported by Tuomo Valkonen) - Fixed bug in `ContentProcessor::Blocks`: `context.dest_node` was not correctly set when `#render_block` was called via the context object - Fixed bug in `Sourcehandler::Main...
2006 Aug 16
5
How to remove similar successive objects from a vector?
Is there some (much) more efficient way to do this? VECTOR=c(3,2,4,5,5,3,3,5,1,6,6); NEWVECTOR=VECTOR[1]; for(i in 1:(length(VECTOR)-1)) { if((identical(VECTOR[i], VECTOR[i+1]))==FALSE){ NEWVECTOR=c(NEWVECTOR,VECTOR[i+1])} } > VECTOR [1] 3 2 4 5 5 3 3 5 1 6 6 > NEWVECTOR [1] 3 2 4 5 3 5 1 6 _______________________________ Atte Tenkanen University of Turku, Finland