search for: musc

Displaying 20 results from an estimated 29 matches for "musc".

Did you mean: misc
2004 Sep 20
2
Getting the real names of variables within functions
...h isn't what I want. I want the plot axes labeled with the names of the variables I passed into lowessed.plot for x and y. Is there any way to do that? Thanks in advance for any help anyone can provide. Aaron ----- Aaron Solomon?? (??ben Saul Joseph??) ??Adelman E-mail??: ??adelmaas at musc.edu Web site??: ??http??://??people.musc.edu??/??~adelmaas??/?? AOL Instant Messenger?? & ??Yahoo??! ??Messenger: ??Hiergargo (YM account now sometimes with the World's first statistical Webcam, Moran's Eye) AIM chat-room (preferred): Adelmania
2004 Jul 20
5
Precision in R
...recision between R and SAS. Does anyone know where I can find specifications for R's type double? (It doesn't seem to be in the R Language Definition.) Thanks in advance for any help anyone can provide. Aaron ------------- Aaron Solomon (ben Saul Joseph) Adelman E-mail: adelmaas at musc.edu Web site: http://people.musc.edu/~adelmaas/ AOL Instant Messenger & Yahoo! Messenger: Hiergargo AIM chat-room (preferred): Adelmania
2004 Nov 03
4
Newbie question: plotting regression models
...to get R to take a regression model object and draw a plot of the regression function? How about overlaying that plot over a scatterplot of the actual data? Thanks in advance for any help anyone can provide. Aaron ----- Aaron Solomon?? (??ben Saul Joseph??) ??Adelman E-mail??: ??adelmaas at musc.edu Web site??: ??http??://??people.musc.edu??/??~adelmaas??/?? AOL Instant Messenger?? & ??Yahoo??! ??Messenger: ??Hiergargo
2006 Jul 04
1
Exporting tables to RTF?
...pe such statements so I can pass them to osascript (a shell program that runs AppleScript) and (by extension) pass them to system()? Thanks in advance for any help anyone can provide. Aaron ----- Aaron Solomon (ben Saul Joseph) Adelman E-mail: Aaron.Solomon.Adelman at gmail.com, adelmaas at musc.edu Web-sites: http://weirdthingoftheday.blogspot.com/ , http:// people.musc.edu/~adelmaas/ AOL Instant Messenger & Yahoo! Messenger: Hiergargo ICQ: 258691118 Jabber: Aaron.Solomon.Adelman at gmail.com
2006 Mar 30
1
Laptop freezes when trying to load R packages?
...ernet wirelessly, so to rule that out I removed R, then plugged in a network wire and re-loaded it, but it still freezes. Any help would be appreciated, as I am not sure how well I will be able to use R without accessing any of the online packages. Thanks Scott Miller Scott Miller, MS millersw at musc.edu Graduate Student, PhD track Department of Biostatistics, Bioinformatics and Epidemiology Medical University of South Carolina Charleston, SC 29425 USA
2004 May 16
1
Newbie Poisson regression question
...ll me if there's anything obviously wrong I've missed? Thanks in advance for any help anyone can provide. Aaron Macintosh PowerBook G4 (867 MHz, 1 GB RAM, 40 GB hard drive, Mac OS X 10.3.3, R 1.9.0) ------------- Aaron Solomon佲伃 (佲伂ben Saul Joseph佲伃) 佲伂Adelman E-mail佲伃: 佲伂adelmaas at musc.edu Web site佲伃: 佲伂http佲伃://佲伂people.musc.edu佲伃/佲伂~adelmaas佲伃/佲伂 AOL Instant Messenger佲伃 & 佲伂Yahoo佲伃! 佲伂Messenger: 佲伂Hiergargo AOL chat room: Adelmania
2013 May 08
4
Correctly Setting New Seed
Could someone please suggest a method to store the current random seed. I'm having trouble understanding how to correctly use set.seed and .Random.seed. Specifically, I have the following code that crashes: set.seed(seed) for(i in 1:10){ print( runif(1)) } To get around this I need to split the number of iterations into chunks: set.seed(seed) for(i in 1:5){ print(runif(1))
2007 Jan 06
2
Bootstrapping Confidence Intervals for Medians
...hrough 9 compose group 2. I would like to create a bootstrapped 90% confidence interval on the difference of the medians (n2-n1). I have successfully calculated a permutation test. This shouldn't be as difficult as I am making it, would someone please enlighten me? Please reply to gilbertg at musc.edu as I have not subscribed to this list yet. TIA, Greg Gilbert, Faculty Research Associate Department of Biostatistics, Bioinformatics, & Epidemiology Medical University of South Carolina
2010 Oct 31
0
Fwd: ForestPlot or similar
> From: Abhijit Dasgupta <adasgupta@araastat.com> > Date: October 31, 2010 1:30:02 AM EDT > To: Matt Shotwell <shotwelm@musc.edu> > Subject: Re: [R] ForestPlot or similar > > I just did something very similar using ggplot's pointrange geom. In the following, I'm plotting hazard ratios, for which the nominal value is 1 and not 0. x has 5 columns: drug, hr, hr.lcb, hr.ucb, and group, and I'm faceti...
2010 Jul 09
2
Compress string memCompress/Decompress
Hello, I would like to compress a long string (character vector), store the compressed string in the text field of a SQLite database (using RSQLite), and then load the text back into memory and decompress it back into the the original string. My character vector can be compressed considerably using standard gzip/bzip2 compression. In theory it should be much faster for me to compress/decompress
2002 Oct 16
0
Re: samba digest, Vol 1 #1731 - 8 msgs
Michael E. Johnson wrote on samba-digest: > Message: 6 > From: "Michael E Johnson" <johnsme@musc.edu> > To: <samba@lists.samba.org> > Date: Wed, 16 Oct 2002 11:51:09 -0400 > Subject: [Samba] Windows Drivers and SAMBA > > This is a multi-part message in MIME format. > > ------=_NextPart_000_0022_01C2750A.519B4C10 > Content-Type: text/plain; > charset=&quot...
2008 Oct 13
4
Fw: Logistic regresion - Interpreting (SENS) and (SPEC)
Dear Mr Peter Dalgaard and Mr Dieter Menne, I sincerely thank you for helping me out with my problem. The thing is taht I already have calculated SENS = Gg / (Gg + Bg) = 89.97% and SPEC = Bb / (Bb + Gb) = 74.38%. Now I have values of SENS and SPEC, which are absolute in nature. My question was how do I interpret these absolue values. How does these values help me to find out wheher my model is
2010 Apr 13
1
Lapack, determinant, multivariate normal density, solution to linear system, C language
r-devel list, I have recently written an R package that solves a linear least squares problem, and computes the multivariate normal density function. The bulk of the code is written in C, with interfacing code to the BLAS and Lapack libraries. The motivation here is speed. I ran into a problem computing the determinant of a symmetric matrix in packed storage. Apparently, there are no explicit
2005 Sep 16
1
SaMBa raises 10x the traffic but only when _executing_, pizza offered
...ren't raising a sweat, a few % of CPU at most. Samba delivers (and accepts) data at up 9.8MB/s sustained to smbclient over a 100Mb/s link, and delivers 2MB images to XP in an eyeblink, so it's not a fundamental networking failure. There is no perceptible speed difference serving from a muscly hardware-RAIDed-SCSI dual-CPU gig-of-RAM server or my el-crappo AOpen laptop. This DID NOT HAPPEN with their old Novell file server using Novell's networking protocols. The application provider also has another site running the app on a Citrix server but from a separate file server, with...
2006 Dec 06
1
Bug and patch for +terms with wildcards
...} } Assert(false); RETURN(NULL); Index: tests/queryparsertest.cc =================================================================== --- tests/queryparsertest.cc (revision 7552) +++ tests/queryparsertest.cc (working copy) @@ -655,7 +655,7 @@ qobj = queryparser.parse_query("muscle*", Xapian::QueryParser::FLAG_WILDCARD); TEST_EQUAL(qobj.get_description(), "Xapian::Query((muscle:(pos=1) OR musclebound:(pos=1)))"); qobj = queryparser.parse_query("meat*", Xapian::QueryParser::FLAG_WILDCARD); - TEST_EQUAL(qobj.get_description(), "Xapia...
2010 Dec 11
0
is there a packge or code to generate markov chains in R
...vector rather than a factor. > > Suggestions? Perhaps you should ask a question. -- David Winsemius, MD West Hartford, CT ------------------------------ Message: 66 Date: Fri, 10 Dec 2010 22:34:23 +0200 From: Tal Galili <tal.galili at gmail.com> To: Matt Shotwell <shotwelm at musc.edu> Cc: "r-help at r-project.org" <r-help at r-project.org> Subject: Re: [R] Encoding problem - I fails to read Hebrew text from online Message-ID: <AANLkTikb1HeF+5LwWqBkvav59eZLkpHx6=T6eR_sygBL at mail.gmail.com> Content-Type: text/plain Hi Matt and everyone else, Than...
2010 Oct 15
0
nomianl response model
...de http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. > -- Bert Gunter Genentech Nonclinical Biostatistics ------------------------------ Message: 89 Date: Wed, 13 Oct 2010 15:12:17 -0400 From: Matt Shotwell <shotwelm at musc.edu> To: Henrique Dallazuanna <wwwhsd at gmail.com> Cc: Bart Joosen <bartjoosen at hotmail.com>, "r-help at r-project.org" <r-help at r-project.org> Subject: Re: [R] Regular expression to find value between brackets Message-ID: <1286997137.1644.37.camel at matt-la...
2010 Nov 24
0
4. Rexcel (Luis Felipe Parra)-how to run a code from excel
...ted, minimal, self-contained, reproducible code. > -- Ista Zahn Graduate student University of Rochester Department of Clinical and Social Psychology http://yourpsyche.org ------------------------------ Message: 38 Date: Mon, 22 Nov 2010 11:09:10 -0500 From: Matt Shotwell <shotwelm at musc.edu> To: "martin.tomko at geo.uzh.ch" <martin.tomko at geo.uzh.ch> Cc: "r-help at r-project.org" <r-help at r-project.org> Subject: Re: [R] statistical test for comparison of two classifications (nominal) Message-ID: <1290442150.1756.74.camel at matt-laptop&gt...
2005 Jun 22
0
DragonFly BSD icecast HOWTO
Dear icecast users and developers, Please note, I have created a HOWTO that discusses how to install and configure icecast and ices2 to play a playlist of oggs on a DragonFly BSD machine. You can review it by following the link below. Feel free to give me any feedback you feel is necessary. Also, please CC me on replies because I am not on the list. Keep up the good work! Thanks, Adrian
2017 Jun 22
1
hpc r configure not recognizing zlib
System: Red Hat Enterprise Linux Server release 6.5 (Santiago) I?ve installed zlib 1.2.11 on the home folder of a Red Hat HPC as part of the process for installing R base 3.4.0. I get this error even after successful install of zlib checking for inflateInit2_ in -lz... no checking whether zlib support suffices... configure: error: zlib library and headers are required I?ve checked R