search for: kvl

Displaying 17 results from an estimated 17 matches for "kvl".

Did you mean: kva
2003 Jul 16
2
Density function for non-central t distribution
...o Makefiles, to the dt function in src/library/base/R/distn.R etc. I haven't read a lot of R source code so it may need some R-ification, but I've tried to use the dt.c file as a standard. Use and abuse. Claus ===> File dnt.c <=== /* * AUTHOR * Claus Ekstr?m, ekstrom@dina.kvl.dk * July 15, 2003. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This prog...
2010 Aug 27
3
[PATCH 0 of 3] libxl: cleanups for type destructor generation
Following series cleans up a few niggles in the libxl destructor autogeneration. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Aug 18
3
Console
I am at my first steps with R... and I already notice that the console has a quite limited number of lines. Can anyone tell me how to visualise all the information, which is actually present? I only see the last part of the output, which obviosly exceeds the maximum number of rows in the console. Thank you very much for your help! Daniela [[alternative HTML version deleted]]
2003 Jul 24
0
nls.control in gnls
...a good idea to pass nlsMaxIter from gnlsControl on to the initial call to nls? As far as I can see from the code it is only used in maximization after the call to get the starting value. Happy R'ing Claus -- ***************************************** Claus Thorn Ekstr?m <ekstrom at dina.kvl.dk> Dept of Mathematics and Physics, KVL Thorvaldsensvej 40 DK-1871 Frederiksberg C Denmark Phone:[+45] 3528 2341 Fax: [+45] 3528 2350
2004 Feb 10
6
R: lags
hi all how does one simulate a random walk process? i.e y(0)=0 y(t)=y(t-1)+ e(t) where e(t) is normal(0,1) say. Regards allan
2003 May 08
1
nls, restrict parameter values
...few weeks ago and had a reply (thanks Christian) that partly solves the problem, but I still would like to be able to restrict some of the independent variables in a nls model to be always >0, (is there a way to do it)?? Thanks, Angel >From: "Christian Ritz" <ritz at dina.kvl.dk> >To: "Angel -" <angel_lul at hotmail.com> >CC: <r-help at stat.math.ethz.ch> >Subject: Re: [R] nls: Missing value or an Infinity produced when evaluating >the model >Date: Wed, 23 Apr 2003 15:22:37 +0200 > >Hi Angel, > >I tried reparametrise...
2003 Sep 03
0
Updated power.t.test
...structure(list(n = n, delta = delta, sd = sd, sig.level = sig.level, power = power, alternative = alternative, note = NOTE, method = METHOD), class = "power.htest") } -- ***************************************** Claus Thorn Ekstr?m <ekstrom@dina.kvl.dk> Dept of Mathematics and Physics, KVL Thorvaldsensvej 40 DK-1871 Frederiksberg C Denmark Phone:[+45] 3528 2341 Fax: [+45] 3528 2350
2006 Sep 25
1
nlme with a factor in R 2.4.0beta
Hi, the following R lines work fine in R 2.4.0 alpha (and older R versions), but not in R 2.4.0 beta (details below): library(drc) # to load the dataset 'PestSci' library(nlme) ## Starting values sv <- c(0.328919, 1.956121, 0.097547, 1.642436, 0.208924) ## No error m1 <- nlme(SLOPE ~ c + (d-c)/(1+exp(b*(log(DOSE)-log(e)))), fixed =
2010 Aug 18
16
[PATCH 00 of 16] libxl: autogenerate type definitions and destructor functions
The series introduces auto-generation of the type definitions used in the libxl interface followed by auto-generation of a destructor function for each type. In the future it may be possible to use the related data structures for other purposes, for example auto-generation of the functions to marshal between C and language binding data types. tools/_libxl_types.h should be identical both before
2008 Jun 20
5
Plotting barplot and scatterplot on same device - x-axis problem
Hi R-users I'm a relative newbie and uses R mostly for graphical purpose. I have a layout problem when plotting a scatterplot and a barplot using par(new=TRUE). The baseline of the x-axis is not positioned equal for the two plotting functions (see picture) and I have been unable to find out how this is changed. http://www.nabble.com/file/p18025066/pic.jpeg I have added the script if this
1997 Dec 13
1
R-beta: Compile error; R-0.60.1, Solaris 2.6, gcc 2.7.2.1
...or the FAQ. After ./configure I use make and get the output below. Any hints are welcome. I am not on the list, so please answer me directly too. Best regards Jens --- Jens Lund Ph.D. student in statistics The Royal Veterinary & Agricultural University, Denmark Please see http://www.dina.kvl.dk/~jlund for further information Output from ./configure: poisson:~/src/R-0.60.1/> ./configure creating cache ./config.cache checking for gcc... gcc checking whether the C compiler (gcc -g ) works... yes checking whether the C compiler (gcc -g ) is a cross-compiler... no checking whether we ar...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking
2002 Jun 13
0
Verbatim text to file
Dear R Gurus What is the elegant solution to the following problem? Say I want to make a small java class from within an R-script and then copy the lines to a file. This may seem like an odd thing to do, but I am currently writing an R-package which is using the 'SJava' package from the Omegahat project, and this would be very helpful to supply stand-alone examples. Till now I
2002 Jun 18
2
generic/method consistency ?
Dear R-list I am compiling my first R-package and I get this warning: ... * checking generic/method consistency ... WARNING plot: function(x, ...) plot.SimNI: function(tags, closedArea, color, ...) ... What does this mean exactly? Thanks in advance. Anders. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2007 Mar 20
1
Error in nlme with factors in R 2.4.1
Hi, the following R lines work fine in R 2.4.0, but not in R 2.4.1 or any devel versions of R 2.5.0 (see below for details). library(drc) # to load the dataset 'PestSci' library(nlme) ## Setting starting values sv <- c(0.43355869, 2.49963220, 0.05861799, 1.73290589, 0.38153146, 0.24316978) ## No error m1 <- nlme(SLOPE ~ c + (d-c)/(1+exp(b*(log(DOSE)-log(e)))), fixed =
2002 Oct 17
0
Polar plot, circular plot (angular data)
Dear R-users, Hereby a polar plot function for plotting angular data. I hope it will be usefull for some of you. I had a need to plot frequencies of wind-directions. The not-that-cheap SigmaPlot software did not allow me to change the orientation of the angular axis to clockwise orientation (what is used for meteorological observations). I even tried the latest version availible at the time
2002 Nov 08
0
Polar plot, circular plot (angular data): II
Dear R-users, As noted by Paul Murrell < p.murrell at auckland.ac.nz > there is errors in the code for polar plotting I send to R-help under the title "Polar plot, circular plot (angular data)" at Thu Oct 17 2002 - 12:18:20 CEST. Thanks! I have reorganized the code into a structure ('pp'). This allows plots to be modified to a greater extent by passing arguments by ...