Displaying 1 result from an estimated 1 matches for "mdscale".
Did you mean:
dscale
2007 May 24
0
MDScale from within Java using Rserve?
Hi there.
I am able to create a multidimensional scaling algorithm in R using the
following code:
places<-read.table("C:\\Project\\R\\places.txt")
places.location <- cmdscale(places, k=2)
round(places.location,0)
plot(places.location,type="n", xlab="", ylab="",main ="cmdscale(places)")
What I would like to know is how I can do this by calling R from within a
java application, using Rserve which I have set up and tested on my win...