similar to: help-ERROR: unknown GUI none from Statistics::R

Displaying 20 results from an estimated 6000 matches similar to: "help-ERROR: unknown GUI none from Statistics::R"

2006 Feb 22
3
2 barplots in the same graph
Hello, I have a very simple question about "2 barplots in the same graph". It seems quite easy, but I searched google for long time, haven't find solution. For example, I want one graph like: x1=seq(0,2,by=0.3) x2=seq(3,0,by=-0.1) barplot(x1,col="red") barplot(x2,col="green") It means if it's on the same graph, some bars are overlaped. So if the bars are
2005 Nov 08
2
question about R graphics-example plot attached
---------- Forwarded message ---------- From: jia ding <dingjia at gmail.com> Date: Nov 2, 2005 4:03 PM Subject: question about R graphics-example plot attached To: r-help at lists.r-project.org Suppose I have the data set like this: A 1 3 7 10 B 5 9 13 The numbers here actually is A or B's occurence positions.So it means, position 1,3,7,10 is A;position 5,9,13 is B's occurence. I
2006 Mar 15
2
Question about 'lables' & ect.
Hi, I have a file named: test_R.txt aaa 2 bbb 5 ccc 7 sss 3 xxx 8 I want to have a plot: test<-read.table("test_R.txt",col.name=c("Name","Score")) par(mfrow=c(1,2)) barplot(test$Score) name<-test$Name axis(1,at=1:length(test$Name),labels=paste(name)) Q1, if you try the script above,you will get 5 bars, the axis only shows "aaa",
2006 Feb 10
1
histogram error: 'x' must be numeric
Hi All, I have problem to plot histogram. What I did is: export a .csv file from PSQL database's table. so, inside this .csv file it looks like: 31.845 24.598 29.1223 24.715 23.1847 24.2321 25.2995 23.4261 30.7873 ...... Then, I use command: score<- read.csv('file.csv', header = FALSE,sep = ",") hist(score, main = "score") it gives error msg: Error in
2004 Feb 22
1
New Perl module Statistics::R
I have released the new module Statistics::R and need some feedback of it's status. This will permit the control of the the R (R-project) interpreter through Perl in different architectures and OS. You can for example, start only one instance of the R interpreter and have different Perl process accessing it. What will save the initiation time of R and memory. Soo, I will appreciate if some
2005 Nov 09
1
accident modified dataset. How can I recovery it?!
I first try these command, it works quite well. library(lattice) data(cuckoos) levnam <- strsplit(levels(cuckoos$species), "\\.") BUT, i want to try : levnam <- strsplit(levels(cuckoos$species), ".") to see the difference. They maybe I modified the data file, because when I try again, it says: > data(cuckoos) Warning message: data set 'cuckoos' not found in:
2012 Sep 05
2
samba4 installation Error and mount: unknown filesystem type 'smbfs'
Hi, all: Two questions. Environment: Ubuntu 12.04 1) mount: unknown filesystem type 'smbfs' With default Samba 2:3.6.3-2ubuntu2.3 installed, all the following 3 commands failed: a) $ sudo mount -t *smbfs* -o username=MYNAME,password=MYPWD //mybooklive/myfolder /media/smb/ mount: unknown filesystem type 'smbfs' b) /media$ sudo mount -t *cifs* -o username=MYNAME,password=MYPWD
2006 Oct 02
2
R function to compute kappa statistics for two vector
Dear R-user, Did anybody know how to calculate the kappa statistics of two vectors for the agreement? for example: a<-c(0,1,0,0,1,0) b<-c(0,1,1,0,0,1) I know the percent of agreement is 3/6, but how to get the kappa? [[alternative HTML version deleted]]
2007 Feb 09
0
cluster "non-diet", "diet" example.
Suppose, we have 3 people called: Francis, Cedric and Nina. Base on what they have eaten, we want to cluster people by "diet", "non-diet". # original data file, named as filename "food.csv". Francis|potato Francis|chocolate Francis|chocolate Francis|milk Cedric|vegetable Cedric|vegetable Cedric|potato Nina|potato Nina|chocolate Nina|chocolate Nina|potato # Step 1: I
2014 Mar 17
1
internal-sftp stuck on 'ls' with chrootdirectory
Hi all, I am using Match directive and internal-sftp to chroot sftp users into their directory. Connection and login works. I can change directories and put/get files. Also logging of the internal sftp-process works (created a /dev/log socket inside the chroot). As soon as I use the 'ls' command, nothing happens and the the process gets stuck. Listing files does work as soon as I remove
2005 Dec 13
1
Problem with understanding output of Cox model
Hi all, I am using a 'tricked' Cox Hazard regression model for discrete choice habitat modelling. However, I'm having a hard time understanding the meaning of the first line the following part of the summary() output: Rsquare= 0.307 (max possible= 0.475 ) Likelihood ratio test= 91.8 on 12 df, p=2.23e-14 Wald test = 26.3 on 12 df, p=0.00977 Score (logrank) test = 58.6 on 12 df,
2006 Mar 24
1
Clustering over strata using a Cox proportional hazard model
Hi all, I wish to do build discrete choice model to analyse habitat selection of wolverines. This can be done with a 'tricked' stratified Cox proportional hazard model. For each individual animal each selected position, and possible alternative non-used available positions are combined into strata. This means that one stratum contains a set of 1 used position and several positions which
2004 Jun 08
1
mbox configuration
Hi, I change the dovecot.conf default_mail_env = mbox:/Mail/IMAP/%u/:INBOX=/var/mail/%u After I did the change, I restart dovecot with the hope that folder that I create will be stored in /Mail/IMAP/%u. Then I use Mozzila as my email client and change the IMAP server directory to ~nina/IMAP/ which is the link to /Mail/IMAP/nina/. But then I can not create folder anymore from Mozzila, or view
2017 Oct 28
0
Job opportunity: postdoc or PhD at Norwegian Institute for Nature Research (NINA)
Dear all, The Norwegian Institute for Nature Research (NINA) seeks a post doc or Ph.D. candidate in mapping and valuation of ecosystem services from green infrastructure in Oslo. The candidate has preferably skills in Open Source GIS (OSGeo) and a M.Sc./Ph.D. in geomatics with an interest in urban ecosystem services, or a M.Sc./Ph.D. in nature management, landscape architecture, geography,
2006 Jun 14
3
A question about stepwise procedures: step function
Dear all, I tried to use "step" function to do model selection, but I got an error massage. What I don't understand is that data as data.frame worked well for my other programs, how come I cannot make it run this time. Could you please tell me how I can fix it? ***************************************************************************************************
2009 Mar 04
3
How to reuse my self function?
Dear all, I wrote a function test1 in test1.R. Right, I am writing another function test2 on test2.R and trying to use test1 function. How can I do? Is there any similar way like including test1.R in test2.R file? Thank You Very Much. Jia-Ming ============================ $BD%2HLC(B Jia-Ming Chang PhD Student Comparative Bioinformatics Group Bioinformatics and Genomics Programme Centre
2003 Mar 18
4
network connection
Hi, How can I configure R to allow http connection (through company firewall)? Your help are greatly appreciated! Wei Ding, Ph.D. Schering-Plough Research Institute 2015 Galloping Hill Road Kenilworth, NJ 07033 Tel: (908) 740-2592 Fax: (908) 740-7664 ********************************************************************* This message and any attachments are solely for the intended rec...
2018 Jul 23
2
LLVM FunctionType cannot be returned as VectorType?
Hi Joshua, Thanks for your great comment. I made up a ConstantVector in IR. Then I successfully use AVX intrinsics to retrieve the returned vector data. The remaining thing is that how to pass the vectors to LLVM function using intrinsics. Do you have any suggestions? Please forgive me if the question is too naive. I pasted below two IR I used. The first one works. The second one doesn't.
2018 Apr 16
5
how to write a loop to repetitive jobs
Hi All.., I need to do the following repetitive jobs: seg71 <- read.csv("C:/Awork/geneAssociation/removed8samples/neuhausen71/seg.pr3.csv", head=T) seg71$id <-"sn71" seg72 <- read.csv("C:/Awork/geneAssociation/removed8samples/neuhausen72/seg.pr3.csv", head=T) seg72$id <-"sn72" seg73 <-
2012 Sep 13
0
Keeping R active when launching external application
Hi, This may or may not be slightly off topic, but I'll stick my neck out... I want to launch an external application from R while retaining R as the active application window (with R console as the active R window). I'm using shell.exec() to sequentially open and evaluate the contents in all jpeg images in a specific folder, using the viewer specified by the file association (in my case