Displaying 20 results from an estimated 20 matches for "murta".
Did you mean:
marta
2004 Mar 26
1
Mahalanobis
...04762 19.04762 19.04762
19.04762
> mydata <- matrix(runif(132,-5,5), 12, 11)
> mahalanobis(x=mydata, center=apply(mydata,2,mean), cov=var(mydata))
[1] 10.08333 10.08333 10.08333 10.08333 10.08333 10.08333 10.08333 10.08333
10.08333 10.08333 10.08333 10.08333
Thanks in advance
Alberto Murta
> version
_
platform i686-pc-linux-gnu
arch i686
os linux-gnu
system i686, linux-gnu
status
major 1
minor 8.1
year 2003
month 11
day 21...
2003 Jan 08
0
New package: gpclib
I have just uploaded a package to CRAN called `gpclib' for clipping large
and complex polygons. This package provides an R interface to Alan
Murta's very fast General Polygon Clipper library (written in C), which
has an optimized version of the Vatti algorithm. Not all features of
Murta's library are implemented -- right now you can do intersections,
differences, and unions. There are also functions for reading/writing
from/to files...
2003 Jan 08
0
New package: gpclib
I have just uploaded a package to CRAN called `gpclib' for clipping large
and complex polygons. This package provides an R interface to Alan
Murta's very fast General Polygon Clipper library (written in C), which
has an optimized version of the Vatti algorithm. Not all features of
Murta's library are implemented -- right now you can do intersections,
differences, and unions. There are also functions for reading/writing
from/to files...
2009 Aug 11
1
Categorizing Lines
Hi all, i have a dataset of 3D coordinates and can't figure out how
to' tell R which One Are the individuals:
I have 3 columns which i named x,y and z
And then i have 2607 Lines, but each specimen is 33 Lines (79 specimens)
How can i tell R to' categorize individuals every 33 Lines?
Thanks in advance
2003 Aug 14
2
vectorization question
...int 9 10 11 12
$ V4: num 0
Don't know if this is the intended result. In any case, you're probably
better off using data.matrix, as
> data.matrix(x)
V1 V2 V3 V4
1 1 5 9 0
2 2 6 10 0
3 3 7 11 0
4 4 8 12 0
HTH,
Andy
> -----Original Message-----
> From: Alberto Murta [mailto:amurta at ipimar.pt]
> Sent: Thursday, August 14, 2003 12:50 PM
> To: r-help at stat.math.ethz.ch
> Subject: [R] vectorization question
>
>
> Dear all
>
> I recently noticed the following error when cohercing a
> data.frame into a
> matrix:
>
> >...
2009 Aug 09
1
problem adding columns to matrix
...32586 2
ind2 28.32586 29.32586 27.32586 28.32586 29.32586 2
ind3 29.32586 27.32586 28.32586 29.32586 27.32586 1
ind4 27.32586 28.32586 29.32586 27.32586 28.32586 1
>
------------------------------------------------------------------------------------------------------
Thanks in advance
Fabio Murtas
fabio.murtas at gmail.com
Nothing in biology make sense if not in Evolution light
2000 Oct 03
1
(fwd) Re: the underscore ("_") in variable name
On Tue, 03 Oct 2000 10:55:28 +0000, Alberto Murta <amurta at ipimar.pt>
wrote:
> And objectively, it's a fact that "<-"
>makes the code easier to read than "_".
I don't follow this argument. Underscore isn't used anywhere else in
the language, so when you see one, you know it's an assignment....
2002 Jan 24
1
using names inside a loop
...e(i); print(my.data.frame$j)}
should work in R (and S). There's always the possibility of using
> for(i in names(my.data.frame)){print(my.data.frame[,i])}
but can someone someone tell me why doesn't the 1st option work also?
Thanks
Alberto
--
Alberto G. Murta
IPIMAR - Institute of Fisheries and Sea Research
Avenida de Brasilia, 1449-006 Lisboa, Portugal
Tel:+351 213027062; Fax:+351 213015849; http://www.ipimar.pt/pelagicos/
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2000 Oct 03
1
(fwd) Re: the underscore ("_") in variable name
> Date: Tue, 03 Oct 2000 14:45:32 +0000
> From: Alberto Murta <amurta at ipimar.pt>
>
> Duncan Murdoch wrote:
>
> > I don't follow this argument. Underscore isn't used anywhere else in
> > the language, so when you see one, you know it's an assignment. On
> > the other hand, both "<" and "-&qu...
2002 Apr 29
1
masking functions
...number of packages in CRAN grows. Maybe an
alphabetical list of all function names from all packages in CRAN could
be made available in the web-page, so that in the future people could
avoid using names that already exist when submitting packages to CRAN.
--
Alberto G. Murta
IPIMAR - Institute of Fisheries and Sea Research
Avenida de Brasilia, 1449-006 Lisboa, Portugal
Tel:+351 213027062; Fax:+351 213015849; http://www.ipimar.pt/pelagicos/
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2002 Feb 01
1
Different behaviour in Linux and Windows (PR#1293)
...l(landmarks.x) - i))
y2 <- c(y2, c(landmarks.y[, - (1:i)]))
}
distan <- sqrt((x1 - x2)^2 + (y1 - y2)^2)
comb <- prod(ncol(landmarks.x):1)/(2 * prod((ncol(landmarks.x) - 2):1))
dist.out <- matrix(distan, nrow(x), comb)
dim(dist.out)
}
--
Alberto G. Murta
IPIMAR - Institute of Fisheries and Sea Research
Avenida de Brasilia, 1449-006 Lisboa, Portugal
Tel:+351 213027062; Fax:+351 213015849; http://www.ipimar.pt/pelagicos/
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2004 Jun 03
5
Confidence intervals for predicted values in nls
Dear all
I have tried to estimate the confidence intervals for predicted values of a
nonlinear model fitted with nls. The function predict gives the predicted
values and the lower and upper limits of the prediction, when the class of
the object is lm or glm. When the object is derived from nls, the function
predict (or predict.nls) gives only the predicted values. The se.fit and
interval aguments
2008 Jan 09
2
Two dependent variables in formula
Hello,
I' m trying to change the formula in the rpart function. The
format of a general formula is Answer ~ expression, where Answer is
the dependent variable and expression is set of terms containing the
independent variables and separated by operators. I want the response
of the formula is more than one dependent variable. It is possible?
2007 Aug 28
1
Age-Length key with kimura algorith
Se ha borrado un texto insertado con un juego de caracteres sin especificar...
Nombre: no disponible
Url: https://stat.ethz.ch/pipermail/r-help/attachments/20070828/6641b572/attachment.pl
2000 Oct 03
1
(fwd) Re: the underscore ("_") in variable name
> From: dmurdoch at pair.com (Duncan Murdoch)
> Date: Tue, 03 Oct 2000 12:31:32 GMT
>
> On Tue, 03 Oct 2000 10:55:28 +0000, Alberto Murta <amurta at ipimar.pt>
> wrote:
>
> > And objectively, it's a fact that "<-"
> >makes the code easier to read than "_".
>
> I don't follow this argument. Underscore isn't used anywhere else in
> the language, so when you see one,...
2002 May 24
5
intersecting polygons and conversion from decimal degree to km
Dear all,
1. How can I compute the intersecting area between 2 polygons ?
2. I have polygons with coordinates in decimal degrees (i.e. 13 deg 30
min = 13.5 decimal degrees). I want to compute their area and get the
results in square meters or square kiometers. Can anyone give me a
conversion coefficient or a pointer where I can find this information
(sorry for this off topic question) ?
Thanks
2006 Jun 28
1
Very slow read.table on Linux, compared to Win2000 [Broad cast]
From: Peter Dalgaard
>
> <davidek at zla-ryba.cz> writes:
>
> > Dear all,
> >
> > I read.table a 17MB tabulator separated table with 483
> > variables(mostly numeric) and 15000 observations into R.
> This takes a
> > few seconds with R 2.3.1 on windows 2000, but it takes
> several minutes
> > on my Linux machine. The linux machine is
2000 Apr 28
3
Matrix inverse
I haven't found a function that directly calculates the matrix inverse, does it exist? Otherwise what would be the fastest way to do it?
Patrik Waldmann
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the
2004 Mar 04
10
"Statistiques avec R"
Dear R users,
I want to share my joy with you. Please see the following
excellent introduction to R "Statistiques avec R " by
Vincent Zoonekynd
http://zoonek2.free.fr/UNIX/48_R/all.html
In paticular, you can see a lot of fascinating graphics
examples of R from which you can get many hints.
Soryy if this is already well-known, but the CRAN search
did not show nothing with the keyword
2006 Jan 01
20
A comment about R:
Readers of this list might be interested in the following commenta about R.
In a recent report, by Michael N. Mitchell
http://www.ats.ucla.edu/stat/technicalreports/
says about R:
"Perhaps the most notable exception to this discussion is R, a language for
statistical computing and graphics.
R is free to download under the terms of the GNU General Public License (see
http://www.r-project.