search for: swiss

Displaying 20 results from an estimated 564 matches for "swiss".

2003 Apr 14
1
isoMDS and stress
Hi all, I try to calculate the stress of a configuration using the formula in the isoMDS help, but I don't have the same result than the stress returned by isoMDS : > library(mva) > library(MASS) > data(swiss) > swiss.x <- as.matrix(swiss[,-1]) > swiss.dist <- dist(swiss.x) > swiss.mds <- isoMDS(swiss.dist) initial value 2.979731 iter 5 value 2.431486 iter 10 value 2.343353 final value 2.338839 Converged > > delta.x <- swiss.mds$points > delta.dist <- dist(delta....
2002 Mar 05
0
Improved HTML Reporting Functions
...o use these functions html.file("report.html") html.begin("Statistical Report 1") html.h("Statistical Report 1") html.p("This report describes the relationship between data BANK.SAV file given for assignment 1") # write an image in the current directory data(swiss) attach(swiss) swiss.lm <- lm(Agriculture ~ Examination) png(filename = "fit1.png") plot(formula(swiss.lm)) abline(swiss.lm) dev.off() # write the image to the report html.h("Figure 1: Multiple Regression Fit", level=2) html.img("fit1.png") html.h("Table 1...
2004 Dec 07
1
how to test the existence of a name in a dataframe
I wanted to test if there exists already a name (which is incidentally a substring of another name) in a dataframe. I did e.g.: > data(swiss) > names(swiss) [1] "Fertility" "Agriculture" "Examination" "Education" [5] "Catholic" "Infant.Mortality" > ! is.null(swiss$EduX) [1] FALSE > ! is.null(swiss$Edu) [1] TRUE I did not expect to get...
2004 Sep 10
1
swiss.x
Is the swiss data set in R the same as S dataset swiss.x . I was trying out some clustering by doing the following that I got from Venables and Ripley's book. h<-hclus(dist(swiss.x), method= "connected") plclust(h) cutree(h,3) plclust(clorder(h,cutree(h,3))) I tried swiss instead of swiss.x,...
2009 Dec 24
1
Question to use R plot GO pie chart
Hi, I have a list of IPI gene IDs. I want to find out whether there is a package which can map the gene ontology to these IPIs, and plot the pie chart to demonstrate the molecular function distributions. The input is like the following gene IPI IDs: IPI:IPI00008860.1|SWISS-PROT:Q9BXJ4-1|TREMBL:Q542Y2|ENSEMBL:ENSP00000231338;EN IPI:IPI00019922.5|SWISS-PROT:Q8N0Y2-1|TREMBL:Q53F81|ENSEMBL:ENSP00000338860;ENSP00000375594|REFSEQ:NP_060807|H-INV:HIT000028861|VEGA:OTTHUMP00000078377 Tax_Id=9606 Gene_Symbol=ZN IPI:IPI00647423.2|SWISS-PROT:Q8N819-1|REFSEQ:NP_001073870|VEGA:OT...
2006 Aug 22
0
Re: Swiss Hosts for Ruby on Rails
Why exactly does your customer want a Swiss host? Is it for "patriotic" reasons, or do they think it''ll be quicker? If they think it''s going to be quicker, you should let them know that with an American host the difference would be negligeable and with a German host, it would be pretty much impossible to measure a...
2013 Jan 30
2
recoding variables again :(
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt. Name: nicht verf?gbar URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20130130/7bc4cd37/attachment.pl>
2004 Jul 13
2
Swiss IP10S using SIP
Has anyone had success getting the Swiss IP10S and the SIP ( IP10 SP v0.0.1 (Build 4)) firmware working with Asterisk? If so do you have copies of what worked in sip.conf and phone configuration files? I can't seem to get the phone to register, it tries but is denied with a Forbidden (which I am guessing is authentication). I tried...
2002 Feb 12
1
Best Subsets regression
...s choosing method=c("Cp","adjr2","r2") just gives Cp values. To mimic the output of Minitab's MTB > BReg 'Fertility' 'Agriculture'-'Infant.Mortality' ; SUBC> NVars 1 5; SUBC> Best 5; SUBC> Constant. I need to go data(swiss) leapa <-leaps(as.matrix(swiss[,-1]),swiss[,1],method="Cp", nbest=5) leapb <-leaps(as.matrix(swiss[,-1]),swiss[,1],method="adjr2", nbest=5) leapc <-leaps(as.matrix(swiss[,-1]),swiss[,1],method="r2", nbest=5) best <- cbind(leapc$r2,leapb$adjr2,leapa$Cp,leapa...
2008 Jul 15
1
Swiss Manager
Hello, I am a chess player and I have PC with Linux. I can't run Swiss Manager correctly (http://swiss-manager.at/) on the wine. Install process without problems, but any export of the table or results go to freezed wine. After this I must kill wine process, because wine running is dead. Can You help me ? Sorry for my English, Marelis
2007 Jan 05
1
help for memory problem with 64-bit machines
...> > ## -------------------------------------------------------------------- > > ## > ## (1) For illustration of use, a small data set with very few iterations > ## of the algorithm, using the RM criterion. > ## > > data(swiss) > anneal(cor(swiss),2,3,nsol=4,niter=10,criterion="RM") *** caught segfault *** address 0x47cd37c, cause 'memory not mapped' Traceback: 1: .Fortran("anneal", as.integer(criterio), as.integer(p), as.double(as.vector(mat)), as.integer(k...
2010 Feb 10
0
1st Swiss Puppet Users Group meeting - February the 18th - Berne, Switzerland
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all I forward an invitation to join the first swiss puppet user group meeting in Berne, Switzerland. It will take place on Thursday, February the 18th at 7 PM. The idea is to kick off meetings on a regular basis at different locations within Switzerland to exchange, learn, discuss and have fun. So stay tuned for further events. cu there! cheers pe...
2009 Aug 11
1
Generating R plots via Ruby CGI
Greetings, I'm trying to debug a simple two-line plot routine in R called test.R: cor(swiss) plot(swiss$Catholic, swiss$Examination) These commands work fine when typed into R. They also work fine when I invoke this routine by the following line into my terminal: R --slave < /Library/WebServer/Documents/gsa/test.R My ultimate goal is to send data to this R routine via a web i...
2002 Mar 03
2
Small Functions for Writing HTML Files
...o use these functions html.file("report.html") html.begin("Statistical Report 1") html.h("Statistical Report 1") html.p("This report describes the relationship between data BANK.SAV file given for assignment 1") # write an image in the current directory data(swiss) attach(swiss) swiss.lm <- lm(Agriculture ~ Examination) png(filename = "fit1.png") plot(formula(swiss.lm)) abline(swiss.lm) dev.off() # write the image to the report html.h("Figure 1: Multiple Regression Fit", level=2) html.img("fit1.png") html.h("Table 1...
2001 Mar 28
0
Error (?) in documentation of 'swiss' data in R base package (PR#886)
Full_Name: Kevin McConway Version: 1.2.2 OS: WinNT Submission from: (NULL) (137.108.11.58) Hardly crucial, but I've come upon a potential error in the documentation of the 'swiss' datafram in the R base package. The description accurately matches what is said in the Mosteller and Tukey source quoted, but according to the data archived at Princeton (links from http://opr.princeton.edu/archive/eufert/switz.html), the variable that Mosteller and Tukey report as infant mort...
2001 Apr 21
0
Re: PR#886: Error (?) in documentation of 'swiss'
>From k.j.mcconway@open.ac.uk Wed Mar 28 16:46:49 2001 Hardly crucial, but I've come upon a potential error in the documentation of the 'swiss' datafram in the R base package. The description accurately matches what is said in the Mosteller and Tukey source quoted, but according to the data archived at Princeton (links from http://opr.princeton.edu/archive/eufert/switz.html), the variable that Mosteller and Tukey report as infant mort...
2004 Mar 03
2
Changing background in splom et al.
Context: Windows XP, R 1.8.1 I'm studying Venables-Ripley "MASS" book and having a go at the many examples in library MASS. The code I'm checking (from script ch04.R) now is ...... data(swiss) splom(~ swiss, aspect = "fill", panel = function(x, y, ...) { panel.xyplot(x, y, ...); panel.loess(x, y, ...) } ) which produces an agreable plot with a gray background and cyan points, but..... Copying the plot as a metafile into Word and having a laser printer I'd better...
2004 Jul 09
0
LARTC related talks at Swiss Unix Conference 2004
...Performance - Jamal Hadi Salim o Status of IPv6 Implementations - Peter Bieringer o High Availability using Keepalived - Alexandre Cassen o Application Layer Fingerprinting - Hendrik Scholz ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUCON''04 - 2nd Swiss Unix Conference ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2nd Swiss Unix Conference September 2-4, 2004 Technopark, Zurich http://www.sucon.ch/ Early bird discount available until Monday, 9...
2008 Jan 09
6
help with R
...ain confidential and/or legally privileged information. Unauthorized disclosure, copying or use of this information may be unlawful and is prohibited. If you are not the intended recipient, please delete this message and notify the sender. All incoming and outgoing e-mail messages are stored in the Swiss Re Electronic Message Repository. If you do not wish the retention of potentially private e-mails by Swiss Re, we strongly advise you not to use the Swiss Re e-mail account for any private, non-business related communications. [[alternative HTML version deleted]]
2010 Feb 24
1
Remove missing observations
...s only for year2. If I try wilcox.test(Outcome~Year, paired=T), I receive an error "not the same length". Is there a fast method to remove those subjects with missing outcomes? Thanks for any help. Regards, Denis Aydin _____________________________________________ Denis Aydin, MSc Swiss Tropical and Public Health Institute Socinstrasse 57, P.O. Box 4002 Basel, Switzerland T +41 (0)61 270 22 04 F +41 (0)61 270 22 25 @ denis.aydin@unibas.ch _____________________________________________ Postal address: Denis Aydin, MSc Swiss Tropical and Public Health Institute Socinstrasse 57, P...