similar to: Thanks for help

Displaying 20 results from an estimated 100000 matches similar to: "Thanks for help"

2004 Feb 09
0
Another question, unfortunately. . . .(Installing "foreig n"/trying to import/export SAS files)
Hi, > -----Original Message----- > From: Shoultz, Gerald [SMTP:bjz9 at cdc.gov] > Sent: Monday, February 09, 2004 3:38 PM > To: r-help at stat.math.ethz.ch > Subject: [R] Another question, unfortunately. . . .(Installing > "foreign"/trying to import/export SAS files) > > > I am trying to use read.ssd and then read.xport (to get a SAS data set). > I have
2004 Feb 09
1
Importing a SAS file to R: Alas, STILL more problems--has anyone gotten this message before, and why
Sorry to write twice in one day--I am a relative newbie to some of these parts of R, and I am pulling my hair out! B/c I am preparing a file to use WINBUGS I am cross-posting to the BUGS group as well, in case anyone there has some ideas on this. I've got a large SAS dataset that I want to put in R form to more easily use the file with the hierarchical modeling software WINBUGS. It has
2004 Feb 09
1
Another question, unfortunately. . . .(Installing "foreign"/trying to import/export SAS files)
I have downloaded R--no problem there. Unfortunately, I have run into a second problem. I am trying to use read.ssd and then read.xport (to get a SAS data set). I have imported the package "foreign" according to instructions ( options(CRAN="http://cran.us.r-project.org/") and install.packages("foreign") ), but when I do so and then use either read.ssd or read.xport I
2004 Feb 05
2
I am totally lost on how to install R . . .
First . . . SUBSCRIBE (I want to subscribe to the list). Second, I am trying to install R on windows XP. In looking at the instruction manual I get the following: The simplest way is to use 'rw1081.exe' or 'miniR.exe'. Just double-click on the icon and follow the instructions. If you installed R this way you can uninstall it from the Control Panel. How do I get the
2004 Jan 22
0
FW: Réf. : Packages debug and mvbutils
Please use the CRAN versions, not the ftp versions which are now out-of-date. Both packages are on base CRAN now, but may not have propagated to all mirrors yet. (But thanks to Gerald for responding-- I had de-subscribed from R-help.) For anyone using the HANDY package (a Windows-specific package which includes a non-C DLL, so I can't CRAN it): I'll post an updated version on the ftp site
2020 Jul 17
2
Stuck here - help please
Hi Gerald, Thank you for the details. As per your suggestion, I have made the changes to dovecot.conf file. Still I don't see any replication is happening. Please see the dovecot.conf file. I do not see "/etc/dovecot/conf.d/12-replication.conf" in my servers. So I had put everything in the dovecot.conf file only. Please see the complete data in it below. The below data is in
2012 Apr 19
0
Thanks-solved:RE: problem extracting data from a set of list vectors
Thanks Don and Jim, "Get" did the trick! That command is new to me, and is exactly what this problem needed. The syntax that worked is actually slightly simpler than what was suggested. This is what worked: all.comps <- ls(pattern="^res") for(i in all.comps){ obj = get(i); ... Thanks again. --Kelly V. -----Original Message----- From: MacQueen, Don [mailto:macqueen1 at
2010 Aug 19
4
Aggregate Help
Please let me know if this is or is not the right place to ask these types of questions. Warning: I am new to R by two days. I have a simple dataset. I have loaded the dataset successfully using the following code: Filepath=(C:\temp\\pilot\dataset1.txt") Pilot=read.table(filepath, header=TRUE) Dataset1.txt is delimited and looks like this: Date illness count 2006/01/01 derm 17 2006/01/01
2010 Aug 20
3
rollmean help (or similar function)
I am working on a simple pilot project comparing the capability of SQL, SAS and R to perform a rolling mean per the following instructions. I have completed the SQL and SAS analysis, so now it's R's turn. Calculate mean values of x (x=count) for each date in the dataset where mean = the average count of days [t-9] through day [t-3] for each date/illness combination. Dataset aggpilot
2018 May 08
0
help with json data from the web into data frame in R
> On May 8, 2018, at 10:08 AM, Evans, Richard K. (GRC-H000) <richard.k.evans at nasa.gov> wrote: > > Hi David, .. I think I've got it :-) > Please let me know if you see anything glaringly wrong with this: > > library(RCurl) > zWebObj <- postForm("https://www.semantic-mediawiki.org/w/api.php", > "action" = "ask", >
2006 Jun 20
1
Help with dimnames()
Hi R people: I'm trying to set the dimnames of a data frame called "ests" and am having trouble! First, I check to see if "ests" is a data.frame... > is.data.frame( ests ) [1] TRUE ... and it is a data frame! Next, I try to assign dimnames to that data frame.... > dimnames( ests )[[ 1 ]] <- as.character( ests$stfips ) Error in
2004 Sep 06
2
Sorry, Gerald (Jerry) Carter now please help me
Sir, Sorry Sir (Gerald Carter). It was a typograhic mistake i came to know late. I am a student of computer science. I have in my course of study a project to be done. I am interested in doing project related to Samba. I have got one of the ideas for the project. Can anybody be kindly help me regarding this idea? Please do reply about this idea. In
2012 Oct 17
0
FW: Vacancy Announcement - Lead Statistician (Health), GS-1530-14
VR, James James T. Durant, MSPH, CIH Statistics and Data Analysis Team (proposed) Science Support Branch (proposed) Division of Community Health Investigations (proposed) US Agency for Toxic Substances and Disease Registry Mailing Address: 4770 Buford Highway, MS F-62 Atlanta, Georgia 30341 Telephone: 770-488-0668 (office) _____________________________________________ From: Lewis,
2018 May 09
1
help with json data from the web into data frame in R
Regarding the question: From the linux shell I use the "-k" switch with cURL to ignore cert errors.. is there an equivalent in the R world? I have (sometimes) had success by creating a .curlrc file and putting the necessary curl options in it. When R invokes curl, curl picks up the options. [my context was running install.packages( method='curl' ) pointing to a local
2011 Aug 30
0
Problem resolved: thanks! RE: column names with rbind loop
Thanks to both Weidong and David for the help! By implementing both of your suggestions I was able to make this work. I did end up putting header=TRUE for both read operations. --Kelly ________________________________________ From: David Winsemius [dwinsemius at comcast.net] Sent: Tuesday, August 30, 2011 1:16 PM To: Vining, Kelly Cc: Weidong Gu; r-help at r-project.org Subject: Re: [R] column
2018 May 08
0
help with json data from the web into data frame in R
> On May 8, 2018, at 8:36 AM, Evans, Richard K. (GRC-H000) <richard.k.evans at nasa.gov> wrote: > > I?ve been tinkering and discovered that the link I need to read json data from is ?https? and there is a certificate warning that I have to click through from a browser. That might be my issue. Is there any way in the json package to tell it to ignore self-signed cert errors in a
2000 May 24
0
SWAT Admin help (was RE: Is this list still active?)
Hi.. I'm running Samba 2.0.7 on a RH 6.0 box... Now, this box is using NIS for authentication, such that I have no entry in the passwd file, but show up with a `ypcat passwd`. I have made a group called 'swat' and have added myself to it, such that doing a `groups wkim` lists swat as one of my groups. I then `chgrp swat smb.conf` and `chmod 664 smb.conf`. Yet, if I try to access
2009 Nov 22
2
how to read BRFSS file
hello, I am trying to do exploratory factor analysis with BRFSS dataset ( http://www.cdc.gov/brfss/technical_infodata/surveydata/2008.htm) for a couple of days, but I was not able to do that and got frustrated. Can anybody help me with step by step guide? BRFSS dataset provides ASCII or SAS format. Thank you. chloe [[alternative HTML version deleted]]
2018 Jan 12
0
Help with packages (methods, stats, stats4)
On 12/01/2018 1:25 PM, Karim Mezhoud wrote: > Yes, > You are right. I mean > install.packages('DVstats'). That won't work either, because DVstats is not on CRAN. > Actually, it seems that DVstats does not have maintainer > https://github.com/USGS-R/DVstats You can try install.packages("devtools") # if not already installed...
2008 Nov 06
2
redcloth executable removed from gem?
Hello, I have the RedCloth 4.x gem installed on a new machine. I used to use the redcloth command line tool/executable ocassionally. Can anyone clarify if it''s still part of the RedCloth 4.x gem series? Thanks. PS: I checked the sources. And the executable source resides in bin [1]. However, checking the Rakefile that generates the gem package I can''t find any