Jason Liao <jg_liao <at> yahoo.com> writes: : : Good morning! I recently implemented a KD tree in JAVA for faster : kernel density estimation (part of the code follows). It went well. To : hook it with R, however, has proved more difficult. My question is: is : it possible to implement the algorithm in R? My impression seems to : indicate no as the code requires a complete class-object framework that : R does not support. But is there an R package or something that may : make it possible? Thanks in advance for your help.
R comes with the S3 and S4 object systems out-of-the-box and there is an addon package oo.R available at: http://www.maths.lth.se/help/R/R.classes/ that provides a more conventional OO system. Its likely that one or more of these would satisfy your requirements. ______________________________________________ [EMAIL PROTECTED] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
