similar to: R startup and shutdown question

Displaying 20 results from an estimated 3000 matches similar to: "R startup and shutdown question"

2008 May 14
3
Help to Draw Plot
Hello friends!! I have two questions, and I would like that you could answer me!!! I have created a plot as plot(range(10,-10),range(10,-10),col="blue",col.axis="blue",col.lab="blue",col.main="blue",col.sub="blue"); 1?) I want that the square of plot and the lines that indicates the value -10,-5,0,5,10 have a blue colour too. 2?)It?s
2008 May 19
2
i want to export a data.frame to file.xls
in order to export a data.frame to sheet.xls i try: write(df,file="file_name.xls") but when i open it a message appears: "impossible to oppen this file. her format is unvalid" knowen that i work with excel_2007 what is the solution ? -- View this message in context: http://www.nabble.com/i-want-to-export-a-data.frame-to-file.xls-tp17326119p17326119.html Sent from the R
2008 Jun 08
3
how to important a date file into R
Hi: I have a data file in the following format. The first three digits stand for the ID of a respondent such as 402, 403. Different respondents may have the same ID. Followed the ID are 298 single digit number ranging from 1 to 5. My question is how to read this data file into R. I tried "scan" and "read" but they do not work because the numbers in the file are not
2008 May 28
1
Unnecssary warnings in plot function (PR#11530)
Full_Name: Joseph Amuah Version: 2.7.0 (2008-04-22) OS: Windows Submission from: (NULL) (205.207.78.4) I used the plot function to create some graphs but wanted to add soem restrictions. A set of warning were produced even though the plot worked fine. Can these warnings be cleaned up? Here is an example: *************************************** > plot(xx$month, xx$log10RR, xlab="",
2008 Sep 25
5
Dot plot - equivalent of MINITAB
hi folks, Bit of a newbie, but I've spent a fair bit of time looking for an answer on this, with no joy. Can anyone help me? Dataset: A single column of values in a csv file (eg. 52, 53, 54, 85, etc) Goal: In Minitab, you have what they call a dot plot. It's a histogram, where a single dot represents a set of identical values (eg. 57, 57, 57 would be one dot). Multiple dots are
2009 Sep 21
9
Handling missing data
I have to remove missing data both in character and numeric datatype.I tried using NA condition but it is not working ,please help me to solve this. -- View this message in context: http://www.nabble.com/Handling-missing-data-tp25530192p25530192.html Sent from the R help mailing list archive at Nabble.com.
2005 Jan 28
3
Roaming Profile problems
Hi, we are using samba 3.0.10-17 with openlddap 2.2.6-37.22 as backend. We use roaming profiles, but because of problems with different operating systems and the profile size, we want to use locale profiles. I tried to change logon path in smb.conf in an emty string, but no changes, if I delete this entry in smb.conf, samba use a default value and this is on the server. So I tried to change
2000 May 12
2
Error: Permission denied, please try again.
Greetings: I hope it is okay to post this here. I have RedHat 6.1 on Intel. I believe I followed the instructions correctly. Everything seemed to compile without errors but when I try to log in I get the above error - any advice? I've poked through the FAQ and man pages with no luck. Thanks for any and all replies, Mike [root at ghana openssh-2.1.0]# ssh -v -l mweaver ghana SSH Version
2012 Nov 28
2
output data by date?
Dear Helpers, I have a dataset X, with no missing values, everything is in order, R reads it correctly, and I have already done some statistical analyses on the dataset. The data are in order by date (six sampling dates in one year, earliest to latest) and I now want to generate boxplots for each parameter for each date. However, R outputs the boxplots in some order that I do not understand (eg.
2006 Mar 31
4
Ruby on Rails - South African Community
Skipped content of type multipart/alternative-------------- next part -------------- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.385 / Virus Database: 268.3.3/298 - Release Date: 2006/03/30
2004 Sep 01
2
allocating memory in C, not in R
Dear R helpers, I need to retrieve several vectors of various types from a call to .C(), but I don't know their length in advance. Is there a way to do this without allocating an excessive amount of memory? If so, an example would be very helpful. S. Blay Department of Statistics and Actuarial Science Simon Fraser University, Vancouver, British Columbia
2006 Mar 16
1
handling warning messages
Is there any way to store the value of warnings but avoid printing them? A simplified example: > out <- c(0.2,0.3,0.4) > var <- c(2,3,4) > outcome <- glm(out ~ var, family=binomial()) Warning message: non-integer #successes in a binomial glm! in: eval(expr, envir, enclos) I don't like the warning printed, but I would like to be able to check it's value after the
2012 Feb 05
2
R-Censoring
Hi there, can somebody give me a guide as to how to generate data from weibull distribution with censoring for example, the code below generates only failure data, what do i add to get the censored data, either right or interval censoring q<-rweibull(100,2,10). Thank you Grace Kam student, University of Ghana [[alternative HTML version deleted]]
2018 Jul 04
1
R is creating a new level which is emty after importing a SAS file
Hi, I have imported some sasdata into R using the sas7bdat package. I have some nominal variables with some missing values. R is creating a new level which is emty ??.When I ask for tabulate this new level is presented with 0 as a frequency. I want to get rid of this level and have my file imported correctly. Do you have some hint to help solve this problem? Please use this email adress to
2018 Jul 04
1
R is creating a new level which is emty after importing a SAS file
Hi, I have imported some sasdata into R using the sas7bdat package. I have some nominal variables with some missing values. R is creating a new level which is emty ??.When I ask for tabulate this new level is presented with 0 as a frequency. I want to get rid of this level and have my file imported correctly. Do you have some hint to help solve this problem? Please use this email adress to
2018 Mar 16
1
Help on multi-line plot
Hello R-Users I am struggling with this line plot, it might be simple but I am missing something here. First of all I want to make multiple line plots across seasons (DJF,MAM,JJA,SON) for 12 variables (here, called nodes) and fill them with the node. So that season=x-axis, node=line col and freq=y-axis. My plot currently links all DJFs, MAMs, JJAs and SONs, however I will like them to be
2009 Jun 02
1
C++ to R : 64bit to 32bit problem.
Hi, I'm new to calling C++/C programs from R and am having some trouble getting started. Following Sigal Blay (Simon Fraser University)'s instructions, I have a .c file called "useC1.c": /* useC1.c */ void useC(int *i) { i[0] = 11; } This produces a .o file : "useC1.o" in a specified directory. I then open R, set the proper directory and:
2010 May 01
3
Resize Graphics Window
Need way to resize an existing graphics window. This should be applicable across platforms (as part of a package). Context: function1() draws main plot (I'm using grid), function2() adds smaller plot above main plot, but this one can sometimes overflow the original graphics window area. Thanks, Sigal
2004 Sep 07
1
C function name garbled
I wrote an R wrapper function (phylpro) around a C function (Rphylpro). The first time I'm running my function, it runs with no errors. The second time I'm trying to run it, I get an error message with the first argument to .Call garbled. Set up: > dyn.load("Phylpro.so") > source("phylpro.R") > WinHalfWidth<-30 > permReps<-10 > breaks<-c(548,
2005 Aug 23
2
FW: Register Today for Fall 2005 VON: "The Destination for IP Communications"
Anyone able to get me a comp/highly discounted ticket to this? $150 just to visit the exhibition halls sounds crazy? Dean > -----Original Message----- > From: Jeff Pulver [mailto:jeff@pulver.com] > Sent: Tuesday, 23 August 2005 11:47 AM > To: mailinglist1 > Subject: Register Today for Fall 2005 VON: "The Destination for IP > Communications" > > Hi There, >