similar to: Circles around letters or numbers in plot title

Displaying 20 results from an estimated 4000 matches similar to: "Circles around letters or numbers in plot title"

2010 Mar 16
2
Retrieving latitude and longitude via Google Maps API
Does anyone have any experience retrieving latitutde and longitude for an address from the Google Maps API? I'd like to have an R script that submits a street address, city, state, and zip code and returns the coordinates. So far, I've been submitting the coordinates from another program, then loading the coordinates in R and merging them back into the data frame I want to use.
2012 Feb 16
1
Reading Text Files with RODBC
I'm thoroughly stumped. I've been playing with RODBC and wanted to see if I could retrieve data from text files using this package as well (for the most part, this is an intellectual exercise, but occasionally I do get data files large enough in CSV format RODBC could be helpful) . I set up a DNS called "Text Files" and then ran the following code in R > library(RODBC)
2012 Oct 17
1
Comparing dcast and reshape
I'm in the middle of my own little intellectual exercise comparing dcast() and reshape() and have successfully stumped myself. I want to melt() a data frame, then dcast() it into a new form. After doing so, I want to duplicate the process using reshape(). So far, I can do the melt and cast require(reshape2) Raw <- data.frame(site = c(1, 1, 1, 1, 2, 2, 2, 2), id =
2008 Sep 26
2
lsmeans
I hope you'll forgive me for resurrecting this thread. My question refers to John Fox's comments in the discussion of lsmeans from https://stat.ethz.ch/pipermail/r-help/2008-June/164106.html John you said, "It wouldn't be hard, however, to do the computations yourself, using the coefficient vector for the fixed effects and a suitably constructed model-matrix to compute the
2007 Nov 16
1
How do I import packages with the package I've built?
I have successfully completed building a package to contain the functions I commonly use. However, I need to have other packages installed in order for some of my functions to work. I've been studying the instructions on installing packages for about a month now, but still haven't figured this one out. From what I do understand, to import additional packages I need some combination of
2012 Jan 06
4
R not recognizing words
Hello all I'm new to R and am experiencing a problem with a categorical variable. All the data of this variable are "Low", "High", or NA. When I put summary(x$y), it gives me the number of High, Low, and NA entries. However, when I try to subset by writing x$y=="Low" or x$y=="High", R does not recognize the word and it writes FALSE for all the
2007 Jul 31
1
AD login strangeness
Dear list readers - I have been googling for an answer for sometime now and have come up with nothing that is seemingly helpful but I need to correct an error. I have a samba server running on a Solaris 8 server and a month ago setup a domain user the rights to access it, using her AD credentials to authenticate and get into the share. Today, I get an email from her stating that it no longer
2012 May 25
4
Reading a bunch of csv files into R
Dear R users I am struggling from a data importing issue: I have some hundreds of csv files needed to be read into R for futher analysis. All those csv files are named in one of the three formats: (1) strings: e.g. London_Oxford street (2) Integer: e.g. 1234_5678 (3) combined: e.g. London_1234 I intend to use read.csv("xxxx_xxx.csv") but I only dealt with sigle documents before and
2011 May 24
1
Loading an S object into R
I hope you'll all forgive me for displaying my severe lack of knowledge on this topic, and I can't really provide much in the way of reproducible code. A colleague of mine has asked if I know how to import an S object into R. The object is stored in a file named 'pre3.f' When I open the file as a text document I get what's printed below. Being one of those young bucks with
2012 May 02
5
R help!
Hello there, I was wondering if you could help me with a quick R issue. I have a data set where one of the columns has both date and time in it, e.g. "12/31/11 23:45" in one cell. I want to use R to split this column into two new columns: date and time. One of the problems with splitting here is that when the dates go into single digits there are no 0's in front of months
2008 Dec 11
1
How to generate a prediction equation for a stratified survival model that was fitted by cph() in Design package
Dear all, I used cph() function from Frank harrell's Design package to create a survival model, then used functions 'Function' and 'sascode' to generate prediction equation based on the saved survival model. But it failed. I included a stratified variable in the model. If I removed the stratification, they were working well. Does that mean that function 'Function'
2017 Jan 12
2
rgl
-----Original Message----- From: Tom Callaway [mailto:tcallawa at redhat.com] Sent: Thursday, January 12, 2017 8:25 AM To: Weiner, Michael <weinerm at ccf.org>; r-sig-fedora at r-project.org Subject: Re: [R-sig-Fedora] rgl On 01/12/2017 08:01 AM, Weiner, Michael wrote: > I resolved this by reinstalling mesa-libGL (dnf reinstall libGL) seems /lib64/libGL.so.1.2.0 was missing off the
2017 Jan 12
2
rgl
-----Original Message----- From: Weiner, Michael Sent: Thursday, January 12, 2017 7:46 AM To: r-sig-fedora at r-project.org Subject: RE: [R-sig-Fedora] rgl -----Original Message----- From: Martyn Plummer [mailto:plummerm at iarc.fr] Sent: Thursday, January 12, 2017 7:41 AM To: Weiner, Michael <weinerm at ccf.org>; r-sig-fedora at r-project.org Subject: Re: [R-sig-Fedora] rgl >>
2017 Jan 12
3
rgl
----Original Message----- From: Martyn Plummer [mailto:plummerm at iarc.fr] Sent: Thursday, January 12, 2017 3:36 AM To: Weiner, Michael <weinerm at ccf.org>; r-sig-fedora at r-project.org Subject: Re: [R-sig-Fedora] rgl >One possibility is that you have the 32-bit version of mesa-libGL-devel installed. This will provide the headers but not the 64-bit l>ibrary which is what you need
2017 Jan 12
1
rgl
-----Original Message----- From: Martyn Plummer [mailto:plummerm at iarc.fr] Sent: Thursday, January 12, 2017 7:41 AM To: Weiner, Michael <weinerm at ccf.org>; r-sig-fedora at r-project.org Subject: Re: [R-sig-Fedora] rgl >> configure:4429: checking for glEnd in -lGL >> configure:4454: gcc -o conftest -g -O2??-DHAVE_PNG_H >> -I/usr/include/libpng16??conftest.c
2008 Mar 28
1
Defining reference category for a cph model summary inside of a "for" loop
I have the following code. > f <- cph(formula = Surv(TimeToDeath, Dead == "Yes") ~1,data=single.dat, x=T, y=T, surv=T) > for(i in c('A', 'B', 'C', 'D', 'E', 'F')){ > f <-update(f,as.formula(paste('Surv(TimeToDeath, Dead == "Yes")~',i,sep=''))) > print(summary(f, paste(i,"=1st
2011 Sep 29
5
5.7 x86_64 DVD iso
I am trying to find a DVD iso that is not a torrent, and looking through the mirrors I am unable to find one. Does anyone happen to have a mirror or repository that they know of that carries the DVD iso for direct download? I am behind a pretty strict firewall and am unable to do torrents. Thanks in advance Michael Weiner =================================== Please consider the environment
2017 Jan 11
2
rgl
I have a Fedora linux 24 64bit workstation I am trying to install rgl on and I keep running into this error: trying URL 'https://cran.cnr.berkeley.edu/src/contrib/rgl_0.97.0.tar.gz' Content type 'application/x-gzip' length 2369444 bytes (2.3 MB) ================================================== downloaded 2.3 MB * installing *source* package 'rgl' ... ** package
2008 Oct 31
1
Is there a way to vectorize this? [with correction]
** Sorry to repost. I forgot to include a function necessary to make the example work ** I apologize up front for this being a little long. I hope it's understandable. Please let me know if I need to clarify anything. Several months ago I wrote a series of functions to help me take my R analyses and build custom reports in html files. Each function either builds or modifies a string of
2008 Apr 11
1
Added Variable Plot for Cox Regression
Greetings, I would like to know if anyone has had experience creating an added variable plot for a coxph model. This method is outlined - with tounge in cheek, quite rigorously - in Lindkvist (1999). Thanks much, Jarrod Dalton Biostatistician Department of Quantitative Health Sciences The Cleveland Clinic Foundation =================================== P Please consider the