Displaying 20 results from an estimated 32 matches for "dipartement".
Did you mean:
departement
2008 Dec 11
2
how to get the CDF of a density() estimation?
Hi,
I've estimated a simple kernel density of a univariate variable with
density(), but after I would like to find out the CDF at specific
values.
How can I do it?
thanks for your help, with it I am very close to finish my first
little bit more serious work in R,
Viktor
2003 May 20
4
Output to connections
In the document "R Data Import/Export", section "Output to connections",
there is the following portion of code:
## convert decimal point to comma in output, using a pipe (Unix)
zz <- pipe(paste("sed s/\\./,/ >", "outfile"), "w")
cat(format(round(rnorm(100), 4)), sep = "\n", file = zz)
close(zz)
## now look at the output
2003 Apr 24
5
Fast R implementation of Gini mean difference
I have written the following function to calculate the weighted mean
difference for univariate data (see
http://www.xycoon.com/gini_mean_difference.htm for a related
formula). Unsurprisingly, the function is slow (compared to sd or mad)
for long vectors. I wonder if there's a way to make the function
faster, short of creating an external C function. Thanks very much
for your advice.
gmd
2003 Feb 04
1
downloaf.file
Dear List-members,
to download a file from the net, the function download.file(..)
does the job. However, before embarking on the download, I would
like to find out how large the file is. Is there a way to know it?
Most easily, this question has been asked before, but I am new to
the list.
Regards, with thanks in advance,
Adelchi Azzalini
----
Adelchi Azzalini <azzalini at
2003 Jun 10
2
fitting data to exponential distribution with glm
I am learning glm function, but how do you fit data using exponential
distribution with glm?
In the help file, under "Family Objects for Models", no ready made option
seems available for the distribution as well as for other distributions
satisfying GLM requirements not listed there.
2003 Aug 26
3
plot empirical pdf
Hi,
are there any function to plot the empirical probability distribution
function? I just don't want to reinvent the wheel...
Best wishes,
Ott
--
Ott Toomet
PhD Student
Dept. of Economics
?rhus University
Building 322
Universitetsparken
8000 ?rhus C
Denmark
otoomet (a) econ au dk
ph: (+45) 89 42 20 27
-------------------------------------------
(o_ (*_ (O_
2005 Nov 08
1
Output glm
Hello,
How can I obtain the likelihood ratio of a Poisson regression model?
Regards.
_____________________________________________
dr. Marziliano Ciro
Facolta' di Economia
Universita' degli Studi di L'Aquila
p.zza del Santuario, 19
67040 Roio Poggio, L'Aquila
tel.: 0862 434836
fax: 0862 434803
2006 Feb 15
1
distribution fitting
Dear list,
Does anyone know how to fit the power law distribution?
I have the empirical distribution and would like to check whether it fits
the power law (with the power estimated from the data).
Any hints are appreciated.
Tanks a lot!
Galina
[[alternative HTML version deleted]]
2006 Feb 15
1
using kernel density estimates to infer mode of distribution
Hello...
Is it possible to use "density" or another kernel density estimator to
identify the mode of a distribution? When I use 'density', the resulting
density plot of my data is much cleaner than the original noisy histogram,
and I can clearly see the signal that I am interested in. E.g., suppose my
data is actually drawn from two or more normal (or other)
2006 Feb 21
1
color quantization / binning a variable into levels
Hi all,
I'd like to quantize a variable to map it into a limited set of integers
for use with a colormap. "image" and filled.contour" do this mapping
inside somewhere, but I'd like to choose the colors for plotting a set of
polygons. Is there a pre-existing function that does something like this
well? i.e., is capable of using 'breaks'?
2007 Mar 17
1
Correlated random effects in lme
Hello,
I am interested in estimating this type of random effects panel:
y_it = x'_it * beta + u_it + e_it
u_it = rho * u_it-1 + d_it rho belongs to (-1, 1)
where:
u and e are independently normally zero-mean distributed.
d is also independently normally zero-mean distributed.
So, I want random effects for group i to be correlated in t, following an
AR(1) process.
Any idea of how
2007 Apr 03
1
bivariate interpolation
Hi. I'm trying to take a data set with two independent and one dependent
variable and enter a x,y value to predict the dependent with a nonparametric
technique. I've been using interpp in the akima package, (windows xp, R
2.4.1), but get values that are orders of magnitude off when the predictors
are slightly out of the range of the data set. Can you recommend a function
for me?
2009 Jul 06
1
transform multi skew-t to uniform distribution
Hi R-users,
I have a data from multi skew t and would like to transform each of the data to uniform data. I tried using 'pmst' but only got one output:
> rr1 <- as.vector(r1);rr1
[1] 0.7207582 5.2250906 1.7422237 0.5677233 0.7473555 -0.6020626 -2.1947872 -1.1128313 -0.6587316 -1.1409261
> pmst(rr1, xi=rep(0,10), Omega=diag(10), alpha=rep(1,10), df=5)
[1] 3.676525e-09
2009 Feb 27
0
R crash on Mac
If I define this function
R> ask <- function (message = "Type in datum")
eval(parse(prompt = paste(message, ": ", sep = "")))
the following is produced as expected on a Linux/debian machine
R> ask("input")
input: 3
[1] 3
R> ask("input")
input: 3:6
[1] 3 4 5 6
R> ask("input")
input: c(3,6)
[1] 3 6
If I
2006 Apr 23
3
bivariate weighted kernel density estimator
Is there code for bivariate kernel density estimation?
For bivariate kernels there is
kde2d in MASS
kde2d.g in GRASS
KernSur in GenKern
(list probably incomplete)
but none of them seems to accept a weight parameter
(like density does since R 2.2.0)
--
Erich Neuwirth, University of Vienna
Faculty of Computer Science
Computer Supported Didactics Working Group
Visit our SunSITE at
2006 Jan 18
4
negative predicted values in poisson glm
Dear R helpers,
running the following code of a glm model of the family poisson, gives
predicted values < 0. Why?
library(MASS)
library(stats)
library(mvtnorm)
library(pscl)
data(bioChemists)
poisson_glm <- glm(art ~ fem + mar + kid5 + phd + ment, data = bioChemists,
family = poisson)
predicted.values = predict(poisson_glm)
range(predicted.values)
Thank you in advance for any hints.
2008 May 06
1
Type I or III SS with mixed model function lme
Hello, I have come across a result that I cannot explain, and am hoping that
someone else can provide an answer. A student fitted a mixed model using
the lme function: out<- lme(fixed=Y~A+B+A:B, random=~1|Site). Y is a
continuous variable while A and B are factors. The data set is balanced
with the same number of observations in each combination of A and B. There
are two hierarchical
2010 May 21
0
a matter of etiquette/Fw: dmvsnorm & mvst in fMultivar
AA> In 2008, I have spotted some errors in a package, one which is
AA> likely to have many users (I am not one myself). The more serious
AA> errors are in the documentation, since they lead to a completely
AA> distorted interpretation of the outcome; in addition, there is (at
AA> least) one programming error which produces some wrong
AA> computations. A few weeks later, the
2006 Jan 23
1
mutlivariate normal and t distributions
Dear R-help list members,
I have created a package 'mnormt' with facilities for the multivariate
normal and t distributions. The core part is simply an interface to
Fortran routines by Alan Genz for computing the integral of two
densities over rectangular regions, using an adaptive integration
method. Other R functions compute densities and generate random
numbers.
The starting
2003 Jun 21
1
optim with contraints
There seems to exist peculiar cases where optim does not take care
of constraints on the parameters to be optimized over. The call to
optim is of the form
opt <- optim(cp, fn=sn.dev, gr=sn.dev.gh, method="L-BFGS-B",
lower=c(-Inf, 1e-10, -0.99527),
upper=c( Inf, Inf, 0.99527),
control=control, X=X, y=y, hessian=FALSE)
The code has worked fine