If assessing spatial auto-correlation is what your interested in, here is a paper that simulates data and evaluates different auto-regressive models in R.
Spatial autocorrelation and the selection of simultaneous autoregressive models
by: W. D. Kissling, G. Carl
Global Ecology and Biogeography, Vol. 17, No. 1. (January 2008), pp. 59-71. (PDF available here)
Unfortunately they do not have the code in R they used to generate the simulated data, but they do have the code available of how they fit each of the models in the supplementary material.
It would definately help though if you could be a little more clear about the nature of your data. Many of the techniques intended for spatial analysis will probably not be implemented in higher dimensional data, and I am sure there are other techniques that are more suitable. Some type of K-nearest neighbors technique might be useful, and make sure to change your search term from clumpy to cluster.
Some other references you may find helpful. I would imagine the best resources for simulating data in such a manner would be with packages in the R program.
Websites I suggest you check out the Spatstat R package page, and the R Cran Task View for spatial data. I would also suggest you check out the GeoDa center page, and you never know the OpenSpace Google group may have some helpful info. I also came across this R mailing list concerning geo data, but I have not combed the archive very much at this point (but I'm sure there is useful data in there).
Edit: For those interested in simulating a pre-specified amount of spatial auto-correlation in a distribution, I recently came across a paper that gives a quite simple recommended procedure (Dray, 2011, page 136);
I used the following steps to obtain a sample with a given
autocorrelation level $\rho$: (1) generate a vector $y$ containing 100 iid
normally distributed random values, (2) compute the inverse matrix $(I - \rho{W})^{-1}$
, and (3) premultiply the vector $y$ by the matrix obtained in
(2) to obtain autocorrelated data in the vector $x$ (i.e., $x = (I - \rho{W})^{-1}y$ ).
The only thing not defined here is that $W$ is an A priori defined spatial weighting matrix. I'm not sure how this would translate to multivariate case, but hopefully it is helpful to someone!
Citation:
Dray, Stephane. 2011. A new perspective about Moran's coefficient: Spatial autocorrelation as a linear regression problem. Geographical Analysis 43(2):127-141. (unfortunately I did not come across a public pdf of the document)