similar to: R data import problems

Displaying 20 results from an estimated 200 matches similar to: "R data import problems"

1998 Nov 19
2
Re: ESS & R data import problems
I have a similar question, I know about --vsize, but I use R under Emacs using ESS. I know there is an easy way to call R from ESS with command line options but I don't remember how. I can't find help on this in ESS documentation or in R documentation. Could someone please remind me how this is done. ------------------------------------ | Robert Denham | |
2000 Mar 03
1
anova question
I have a probably very naive question about the R anova/aov functions: I've found in several text books with descriptions of anova procedures that, in nested anova (specifying the model "X~A/B", B being a factor specifying treatments, and A groups of samples within each treatment), the mean square for "among treatments" is divided by the mean square "within treatment
1999 Apr 21
0
varcomp?
Hello R experts, I haven't found anything like the S function 'varcomp' as described in W.N. Venables & B.D. Ripley's 'Modern Applied Statistics ...' for R; does something comparable exist for R, or is planned for future releases? More generally, are there libraries with post-anova test procedures, like Student-Newman-Keuls? Or do those of you who frequently use
1999 Nov 30
0
Power of tests
Hello R-Experts, 2 questions: does anybody have example functions for determining the power of, say, a t-test or a single factor anova with fixed or random factors? and: is there an implementation of Cochran's test for heterogeneity of variances (i.e., is there a frequency distribution of Cochran's C)? Many thanks for your attention ... Ulf (please CC: me, I'm not on the
1999 Jan 07
1
problems compiling R packages with Linux
Hello out there, my first try to install a package (e.g. ctest from CRAN) didn't succeed; looking at the error messages I think it must be a configuration problem of my machine, but as I'm not very experienced I would be glad if someone could give me a hint ... R's version is 0.63.0, my i386-Linux is kernel 2.0.35. I hadn't had problems to compile R, and R itself seems to work.
1999 Jan 28
2
time series analysis
Hello out there, in their "R Complements" to Modern Applied Statistics W. Venables and B. Ripley say that there is a lack of time series related functions in R compared to S plus. Looking at CRAN I didn't find much, too. As I have to learn something about +-basic ts analysis, e.g. spectral analysis, I would like to know whether somebody has developed a "unpublished" time
1998 Nov 29
2
[Johannes Huesing <tmi0m0@sp2.power.uni-essen.de>] Media coverage
Johannes Huesing sent a message to stat-lisp-news at stat.umn.edu regarding an article in Linux-Magazin (German) on statistical software for Linux. I enclose excerpts. Can anyone summarize what was said about R in the article? If there is a web site for the article I would appreciate learning of the URL. I must admit, though, the my abilities in German are much less impressive than the
2001 Jan 17
0
bitrate scaling by freq / quality bug ? / comments
Hi again! I have some other suggestions/modifications. 1. Bitrate scaling by frequency in vorbis_encode_init: bpch=(long)((float)nominal_bitrate/(float)channels*44100.0f/(float)rate); With this modification, if we use -b128 at 22khz files, the OGG file will be 128kbit/s, not 64kbit/s ... 2. Probable quality bug: I tested some floating point constants (recalculated them (see below) and encoded
2000 Nov 26
1
Trivial 12% performance gain in encoding
(well, YMMV, but it got me 12% on Mac OS X Public Beta on my test case). In vorbis/lib/scales.h, add the following after fromdB() #define sqrt_fromdB(x) (exp((x)*.11512925*0.5)) In vorbis/lib/psy.c at the bottom of bark_noise(), do: < noise[i]=sqrt(fromdB(v)); > noise[i]=sqrt_fromdB(v); This avoids the sqrt() call entirely by just doing it as part of the exp(). (I'd
1999 May 05
1
ANOVA "ex post" Analysis
Hello everybody, shame on me if I have overlooked something (CRAN, StatLib), but I think I've searched carefully. Maybe it's just too obvious to see for me (happens frequently). Is a function available that extracts multiple comparison of means from objects produced by "aov()" ? Sorry if the term is not correct, I translated from german word by word ("Multiple
2001 Nov 18
1
Configuration: libpng needs zlib, but ...
I noticed that congigure reported libpng as "not found" although a recent version exists. Further looking into this issue told me, that the test failed because the test from R.m4 AC_CHECK_LIB(png, png_create_write_struct, [ BITMAP_LIBS="${BITMAP_LIBS} -lpng -lz" AC_DEFINE(HAVE_PNG) ], , ${LIBS}) ], AC_MSG_RESULT([no])) ]) did
1998 Nov 23
1
Problems compiling R-0.63.0
When I try to compile R v0.63.0 on my SUN (Solaris 2.5.1 using g77) I get the error message make: Fatal error: Don't know how to make target `/sw/sun4_55/R-0.63.0/src/*/*.[chfy]' I seems that one source file can't be compiled. Does anybody know what I can do? Frank Beimfohr University of Dortmund, Germany
2000 Jan 21
0
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
2012 Mar 21
1
Multinomial Logit data arrangement
Dear all, I am having a hard time attempting to do a multinomial logit modeling in R. I am trying to analyze a dataset whereby there are 3 scenarios with 4 difference choice parameters. In particular ? I am having a hard time arranging this into a .csv format. What sorts of headings should I put in the column headers to reflect the variables and parameters for the total number of choice made
1999 Nov 02
1
R abnormal exit when plotting lm (PR#308)
<<insert bug report here>> I had a "abnormal" exit of R plotting a fitted linear model. here's the last few lines of the R session: ------------------------------------------------------------------- > plot(blstrhz.lm) Hit <Return> to see next plot: Hit <Return> to see next plot: Hit <Return> to see next plot: X Error of failed request: BadValue
2000 Aug 22
1
optimization progress
Hi all, The decoder is down 30% execution time, identical bit output. Didn't get the mdct yet; 1024 point mdct is a bit much to brute-force, and I'm not going to hand-unroll the whole thing either (the machine- unrolled version produced a 1.5M executable; understandably, it wasn't very fast. Still waiting for processors with 1.5M L1 code caches ;-) Slowest parts now are: -- mdct --
2000 Aug 28
3
optimization patches
Well, here you are. 24k; sorry if I'm not supposed to put this size things in your mailbox, didn't know where else to put it. And you all are subscribed to vorbis-dev, after all. I'm not that good at breaking patches apart, so it's one big patch. Sorry. Overview: configure.in make profiling easier & more useful decoder-example.c (#if 0'ed) dither output;
2006 Feb 15
0
readline() for passwords?
I don't like to have my password exposed by typing at all. I also don't like to enter it each time that I wish to open a database (or when I run scripts automatically across a Linux cluster). My solution has been to keep a file in my HOME directory containing the username and password for the databases. This file has read and write permission set so only I (and root) can read it; this is
1999 Nov 07
1
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
2006 Apr 28
1
plot acf of several timeseries
Hello r-help, I have a couple of time-series of different length and I would like to produce a simple overview plot showing the autocorrelation functions of the series. The time-series are stored in a dataframe like this: > test.data item year value 1 xxx 1961 -1.09 2 xxx 1962 0.21 3 xxx 1963 -0.81 [trimmed] 8