[R] Saving .eps files with Times New Roman font

2016-06-23 Thread A A via R-help
In RGui, I'm running the following bit of code: windowsFonts(A=windowsFont("Times New Roman")) plot(0,0, ylab='y axis', xlab='x axis',main='title',family="A") The labels and title appear in Times New Roman font. So far, so good. However, when I right click the figure and select 'Save as postscript

[R] Dashed/dotted ecdf plots using lots of points

2016-06-13 Thread A A via R-help
As per the title, I'd like to generate a dashed/dotted CDF plot of my data using ecdf. Unfortunately, it seems like I can't get the plot to look dashed/dotted even after specifying it in the plot function. I suspect this may be because of the high number of data points. Here's a short sample of

Re: [R] Solving sparse, singular systems of equations

2016-04-20 Thread A A via R-help
Thanks for the help. Sorry, I am not sure why it looks like that in the mailing list - it looks much more neat on my end (see attached file). On Wednesday, April 20, 2016 2:01 PM, Berend Hasselman wrote: > On 20 Apr 2016, at 13:22, A A via R-help wrote: > > > &

Re: [R] Solving sparse, singular systems of equations

2016-04-20 Thread A A via R-help
. Please excuse my brevity. On April 20, 2016 4:22:34 AM PDT, A A via R-help wrote: I have a situation in R where I would like to find any x (if one exists) that solves the linear system of equations Ax = b, where A is square, sparse, and singular, and b is a vector. Here is some code that

Re: [R] Solving sparse, singular systems of equations

2016-04-20 Thread A A via R-help
an answer (but I think it convertsyour sparse matrix into a dense one before doingany linear algebra). Bill Dunlap TIBCO Software wdunlap tibco.com On Wed, Apr 20, 2016 at 4:22 AM, A A via R-help wrote:  I have a situation in R where I would like to find any x (if one exists) that solves