similar to: Danish characters i R2.0.1 vs R1.9.1 under winXP

Displaying 20 results from an estimated 400 matches similar to: "Danish characters i R2.0.1 vs R1.9.1 under winXP"

2007 May 30
1
Factor function: odd behavior when labels argument contains duplicates?
Hi all. I think it would be nice to be able to combine levels of a factor on creation a la x <- rep(0:5,5) y <- factor(x,levels=0:5,labels=c('1','1',2:5)) ## (1) y [1] 1 1 2 3 4 5 1 1 2 3 4 5 1 1 2 3 4 5 1 1 2 3 4 5 1 1 2 3 4 5 Levels: 1 1 2 3 4 5 I thougt this would (should?) create a factor with 5 levels, ie combining 0 and 1 in x into one level in y. I find it
2006 Mar 06
1
P-values from survreg (survival package) using a clusterterm
Hi all. Belove is the example from the cluster-help page wtih the output. I simply cannot figure out how to relate the estimate and robust Std. Err to the p-value. I am aware this a marginal model applying the sandwich estimator using (here I guess) an emperical (unstructered/exchangeable?) ICC. Shouldent it be, at least to some extend, comparable to the robust z-test, for rx :
2004 Nov 22
1
Left justification af dimnames in tables.
Hi helpeRs. When I do two-ways tables dimnames in columns are almost left-adjusted: <- factor(rbinom(30,1,.3),labels=c("first","second")) > b <- a > table(a,b) b a first second first 21 0 second 0 9 If I do a oneway table however, dimnames are right-adjusted: table(a) a first second 21 9 Actually I must admit I
2005 Feb 10
2
Mean calculated from R1.9.1 different from R2.0.1
Hello, I ran my simulations on the Unix verson of R1.9.1 and the Windows version of R2.0.1 on XP. I kept getting different values for the mean of the same column of the same matrix, and am perplexed. I would appreciate if anyone could help explain the difference? Here is a sample code: set.seed(7293) z1v <- rnorm(1000, mean=68, sd=13) z1v <- (z1v-mean(z1v))/sd(z1v) Using R1.9.1 on Unix,
2004 Apr 29
2
Sweave in makefile under Win XP
Hi all. To automate the production of a document I want to have something like: test.tex : test.Rnw "Sweave("test.Rnw") "| R --no-restore --no-save in a makefile. This however gives an error as R states: Sweave("test.Rnw") : not found. I use R-1.9.0pat (040424 I think) on Win XP. Any suggestions, hints or plain help appreciated. Steen Ladelund
2004 Jul 26
3
Read SPSS data (*.sav) in R 1.8.0 (ok) and R1.9.1(error)
Hallo! I read SPSS data in the following way: library(Hmisc) library(foreign) dat<-spss.get("surv_abb.sav") In R1.9.1 I got the message: "Error in all(arg == choices) : Object "typeDate" not found" In R1.8.0 the same script works fine. Does anybody know a possibilty to read a SPSS file under R1.9.1? Thanks! Karl
2004 Sep 07
2
package methods different behaviour R1.9.1 patched and R2.0.0
Hi! Concerning different behaviour between 1.9.1 patched and: R : Copyright 2004, The R Foundation for Statistical Computing Version 2.0.0 Under development (unstable) (2004-09-06), ISBN 3-900051-07-0 Subtitle: as(x,"vector"); x is of class "Massvector"; never enters setAs("Massvector","vector"... The same code: as(mvl[[1]],"vector") causes
2004 Aug 11
2
Xemacs do not want to execute help.start() with R1.9.1
Hi all, I 've just reinstalled from the scratch my Windows 2000 (Italian version) on a formatted HD, because I like to clean the environment from time to time (say once a year). I'm currently using XEmacs-21.4.13 and R (rw1091) and Xemacs is configured as described in http://socserv.socsci.mcmaster.ca/jfox/Books/Companion/ESS/ess-xemacs.pdf The problem is that the command help.start()
2005 Apr 18
2
R2.0.1 for Mac OS X 10.3 problem
This combination was operating satisfactorily until I tried updating lme4 and Matrix. My attempts to do this ultimately broke R. The R console appears briefly, then collapses. I have tried downloading and reinstalling R without success. Typing 'R' into Terminal gives the error message bring up the usual introduction, then the error message: Error in methods:::mlistMetaName(mi, ns)
2004 Nov 22
1
Installing rgl in R2.0.1
I'm running R2.0.1 under Solaris 2.9 on a SunBlade 100. When I installed it, I set things up to use the Sun compilers cc, CC, f95 with the options recommended in the installation and administration guide. Until today, no worries. With all this discussion about R GUIs I thought I'd give R Commander a go. The web page said to install a bunch of packages first, so I did >
2004 Jun 25
2
Sweave: R code in self defined TeX-commands
Hi, I need to produce a standard report for several variables in Sweave and thus would need the possibility to define a TeX-command which includes R-code like \newcommand{\meansd}[1]{The mean is \Sexpr{mean(#1)} and the standard deviation is \Sexpr{sd(#1)} . } and then just write \meansd{age} in the latex code to get the whole sentence. The above does not work, since
2003 Apr 11
1
danish characters - installing R - linux redhat 8.0
I'm using R on a linux redhat 8.0 installation. The special danish characters (ÅØÆæøå) are showed wrong on the screen. Example: yy<-matrix(c(0,2,1,1,8),ncol=1,dimnames=list(c("Brøæå","AGF","AB","Farum","FC-Kbh." ),c("Stemmer"))) barplot(yy[1:5],ylab=names(as.data.frame(yy)),main="5. grade.... ") Any hints? Cand.
2005 Feb 22
1
problems with tcltk in R 2.0.1 (PR#7698)
Full_Name: Vidar Hjellvik Version: 2.0.1 OS: windows Submission from: (NULL) (82.134.28.194) I have an tcltk application that runs without problems in R1.9.1, but when I press the "run"-button (and other buttons as well) in R2.0.1, I get the message: "Error in function () : can't change value of a locked binding". I have another tcltk application that runs fine on
2005 Feb 17
2
How to upgrade library from R 1.9.1 to R 2.0.1
Dear All: I have a library for R 1.9.1, it is very easy to setup a library in R 1.9.1. For example: I want to setup a library "test" for R1.9.1. 1. Create a folder "test" in the direct X:\ R\ rw1091\ library \. 2. Create a file "DESCRIPTION" in the direct X:\ R\ rw1091\ library\ test\. 3. Modify the "Package:" and "Title:"
2005 Feb 03
2
Surprising Behavior of 'tapply'
Dear all, I wanted to make a two-way-table of two variables with a counting variable stored in another column of a dataframe. In version 1.9.1, the behavior is as expected as shown in the simplified example code. > sex <- rep(c("F", "M"), 5) > income <- c(rep("low", 5), rep("high", 5)) > count <- 1:10 > mydf <-
2008 Jun 18
1
debugging dovecot and sieve
I have install dovecot and sieve and it doesn't appear to be working. Below is my dovecot.conf Are there some debugging settings I can use to test if dovecot is linking with sieve properly. Nothing appears to show up in the logs start dovecot.conf ======================= cat /usr/local/etc/dovecot.conf base_dir = /var/run/dovecot/ auth_verbose=yes auth_debug=yes mail_debug=yes
2004 Nov 25
2
logistic regression and 3PL model
Hello colleagues, I am a novice with R and am stuck with an analysis I am trying to conduct. Any suggestions or feedback would be very much appreciated. I am analyzing a data set of psi (ESP) ganzfeld trials. The response variable is binary (correct/incorrect), with a 25% base rate. I've looked around the documentation and other online resources and cannot find how I can correct for
2013 Jun 08
1
reading a character translation table into R
I have a txt file (attached) that defines equivalents among characters in latin1 (or iso-8859-1), numeric &#xxx; codes, HTML entities and latex equivalents. A portion of the file is shown inline below, but may not be rendered well in this email. I'd like to read this into R to use as a character translation table, but am stuck on two things: - The 5 fields in the file are
2004 Oct 22
0
danish characters on win2k share
Hello all I have a problem getting danish characters(? ? ?) shown on a mountet win2k share. The samba is 3.0.7. The OS is Slackware 9.1 running on a 2.4.22 kernel. My LANG is 'da_DK.ISO8859-1'. On the linux box i can write and read the characters just fine with the internal filesystem. And when i mount a win2k share by 'mount -t smbfs //server/share/ /root/test/' i'am still
2011 Aug 10
1
Listbox Question - Danish accounting program SummaSummarum
Dear Wine board. This is my first Post. This wine bug has been bothering me for two years now so now i think it is time to try and have it fixed. The first step is to figure out how to phrase my bug with the correct terms. As I don't know the names of the widgets since I haven't developed windows-application for some 10 years, I hope that someone will look at my screencast which i recorded