similar to: From: Marc Schwartz <mschwartz@medanalytics.com>

Displaying 20 results from an estimated 2000 matches similar to: "From: Marc Schwartz <mschwartz@medanalytics.com>"

2002 Nov 23
3
Possible solution for Mozilla/help.start() search problems
I thought that I would post a follow up given the several posts on this same subject in the past week. All R comments pertain to 1.6.1. Earlier in the week using a development build of Mozilla under RH 8.0, I was able to get the help.start() based search engine to work with both Java and JavaScript enabled. This was using what I believed to be the V1.2b branch of Mozilla, in which both Xft
2005 Jan 10
4
Graphical table in R
I would like R to produce some tabulated data in a graphical output. When I say tabulated data, what I mean is a table with rows and columns. This would be useful when reading in a big file, performing some analysis on it, and then wanting to display the results as a table. Something like plot(x,...) where x is a matrix For example, the result could look (approximatly) like...
2004 Mar 30
1
Where: package licenses
Thanks Thomas and Marc that is what I was looking for. -Jason The DESCRIPTION file for a package lists the license; this is also given in the CRAN entry for each package. -thomas Marc Schwartz <MSchwartz@MedAnalytics.com> 03/30/2004 09:02 AM Please respond to MSchwartz To: Jason.L.Higbee@stls.frb.org cc: R-Help
2002 Sep 06
1
Main R Project and CRAN sites down?
I am still having a problem accessing CRAN here in Florida (at 9:00 AM EST Friday morning): + install.packages(select.list(a[,1],,TRUE), .libPaths()[1], available=a)} trying URL `http://cran.r-project.org/bin/windows/contrib/PACKAGES' unable to connect to 'cran.r-project.org'. Error in download.file(url = paste(contriburl, "PACKAGES", sep = "/"), :
2023 Mar 10
3
401 error
I have a SIP trunk - calls going out work fine. Trying to setup an incoming call with a DNIS When I dial the number - I see nothing on the CLI. The person says the server is returning 401 How do I debug that. Using asterisk 18.8.0 Thanks Jerry -------------- next part -------------- An HTML attachment was scrubbed... URL:
2004 Jul 07
3
fast NA elimination ?
dear R wizards: an operation I execute often is the deletion of all observations (in a matrix or data set) that have at least one NA. (I now need this operation for kde2d, because its internal quantile call complains; could this be considered a buglet?) usually, my data sets are small enough for speed not to matter, and there I do not care whether my method is pretty inefficient (ok, I
2003 Apr 03
1
Re: Outbound e-mail slow from R servers?
>>>>> "Marc" == Marc Schwartz <mschwartz@medanalytics.com> >>>>> on Thu, 03 Apr 2003 09:24:20 -0600 writes: Marc> Martin, Marc> Not sure if you are aware of this, but since yesterday Marc> there seems to be multi-hour delays in outbound e-mail Marc> from r-help and r-devel. Inbound mail seems to show Marc> up
2003 Apr 03
1
Re: Outbound e-mail slow from R servers?
>>>>> "Marc" == Marc Schwartz <mschwartz@medanalytics.com> >>>>> on Thu, 03 Apr 2003 09:24:20 -0600 writes: Marc> Martin, Marc> Not sure if you are aware of this, but since yesterday Marc> there seems to be multi-hour delays in outbound e-mail Marc> from r-help and r-devel. Inbound mail seems to show Marc> up
2005 Apr 15
5
Pearson corelation and p-value for matrix
Hi, I was trying to evaluate the pearson correlation and the p-values for an nxm matrix, where each row represents a vector. One way to do it would be to iterate through each row, and find its correlation value( and the p-value) with respect to the other rows. Is there some function by which I can use the matrix as input? Ideally, the output would be an nxn matrix, containing the p-values
2003 Apr 02
2
RH 9 and R 1.7.0 Beta April 2 Latest
Hi all, I am now up and running on RH 9. Went pretty smoothly (about 1 hour for the clean install, though still doing some "tweaking".) There are already about 40 update RPMS including a new kernel via RHN, which I have installed. Noticeable improvements since 8.0, especially with the new version of XFree86, which yields sharper fonts that are now (with TTF fonts installed)
2004 Dec 20
3
RE: [R] SAS or R software
Yes, par(family="mono") would work, except that I get R segfaults from this sequence: > > plot.new() > par(family="mono") > par(cex=8) > strheight("foo") Process R segmentation fault (core dumped) at Mon Dec 20 16:07:56 2004 on R 2.0.1 (2004-11-15), Red Hat Enterprise Linux AS release 3 In my code I call strheight and strwidth several times in
2004 Mar 30
0
Where: package licenses
Note that package.descripton() is deprecated in R-1.9.0. You have to use packageDescription() instead. Jim James W. MacDonald Affymetrix and cDNA Microarray Core University of Michigan Cancer Center 1500 E. Medical Center Drive 7410 CCGC Ann Arbor MI 48109 734-647-5623 >>> Sundar Dorai-Raj <sundar.dorai-raj at PDF.COM> 03/30/04 10:51AM >>> You can access this from
2002 Dec 18
8
iptables: Invalid argument
2006 May 17
40
IDE recommendations?
I was wondering if there are any IDEs out there that has autocomplete features for win32. It would be perfect if it could do something akin to what DHH is doing on the screencast hosted on the rails website. http://media.rubyonrails.org/video/rails_take2_with_sound.mov Cheers -- Posted via http://www.ruby-forum.com/.
2004 Feb 29
7
Proportions again
Hello. I asked before and it was great, cause as a beginner I learned a lot. But, if I have this in R (1 and 2 are codes for sex): > sex<-c(1,2,2,1,1,2,2,2) > sex [1] 1 2 2 1 1 2 2 2 I´d like to obtain the proportion according to sex.So I type: > prop.table(sex) [1] 0.07692308 0.15384615 0.15384615 0.07692308 0.07692308 0.15384615 0.15384615 [8] 0.15384615 The result is OK, but I
2023 Mar 10
2
401 error
On Thu, Mar 9, 2023 at 9:42 PM Jerry Geis <jerry.geis at gmail.com> wrote: > I have a SIP trunk - calls going out work fine. > > Trying to setup an incoming call with a DNIS > > When I dial the number - I see nothing on the CLI. > The person says the server is returning 401 > > How do I debug that. Using asterisk 18.8.0 > > Thanks > > Jerry > Thanks I
2003 Nov 13
5
xlims of barplot
I would like to create a family of barplots with the same xlimits. Is there a way to "read" the xlimits from the first graph so I can apply it to the subsequent ones? I have tried just taking the min and max of the x data and the plot doesn't show. cheers [[alternative HTML version deleted]]
2004 Dec 20
1
mono fonts (was RE: RE: [R] SAS or R software)
Ah, I'm using Exceed Hummingbird 7.1 as the X server.... It does have fixed width fonts, and it is happy with variable width fonts up to this extreme .... A little more fiddling shows that this succeds with a linux based X11 server, and that even plot(1,1) par(family="mono",cex=8) text(1,1,"foo") segfaults. I've tested values of cex. Anything above 2.1249
2007 Dec 09
0
David Schwartz is out of the office.
I will be out of the office starting 12/07/2007 and will not return until 12/10/2007. I will reply to your message when I return Monday, December 10th. For MSRB / TRACE / OATS or Partnerships/Scorecard issues please call the Trade Reporting Control main number: 804-344-6216. For issues requiring escalation please contact Ralph Brugueras: 804-344-6515. Thank you. The information is not
2008 Feb 22
0
David Schwartz is out of the office.
I will be out of the office starting 02/22/2008 and will not return until 02/25/2008. I will reply to your message when I return Monday, February 25th. For MSRB / TRACE / OATS issues please call the Trade Reporting Control main number: 804-344-6216. For issues requiring escalation please contact Ralph Brugueras: 804-344-6515. Thank you. ATTENTION: Please be aware that since the