Displaying 20 results from an estimated 56 matches for "risorse".
2011 Jan 20
4
puzzled with plotmath II
...kages:
[1] grid stats graphics grDevices utils datasets methods base
other attached packages:
[1] ggplot2_0.8.8 proto_0.3-8 reshape_0.8.3 plyr_1.2.1
loaded via a namespace (and not attached):
[1] digest_0.4.2 tools_2.12.1
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 0 40 5 58-37 68
email: cbeleites at units.it
2010 Nov 10
2
force apply not to drop the dimensions of FUN results ?
Dear R users,
Here is my problem:
I have an array with at least four dimensions:
> dim(myArray)
[1] 20 17 3 6
I'd like to apply a function to each occurrence of the matrix (3x6)
defined by the last two dimensions. This interpolation function always
return a matrix of the same dimensions as its argument:
> interpSecteurs.f(myArray[1, 1, , ])
secteur
rotation 1 2 3
2010 Aug 17
1
prompt () and backticks for default arguments
...syntax error.
While this is easily fixed if the .Rd is further edited manually, I stumbled
over it using the automated .Rd generation with inlinedocs - in this combination
it is very inconvenient.
Any suggestions?
All the best,
Claudia
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 0 40 5 58-37 68
email: cbeleites at units.it
2008 Dec 22
2
methods vs. functions
...package with a namespace
avoids trouble with clashing function names - so I don't need to worry about
that using functions (I anyways have some functions, that should not be
methods of the class).
Any comments?
Thanks a lot!
Claudia
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 (0 40) 5 58-34 47
email: cbeleites at units.it
2008 Dec 22
2
... (dotMethods) and cbind/rbind: how to give the signature?
...month 10
day 20
svn rev 46754
language R
version.string R version 2.8.0 (2008-10-20)
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 (0 40) 5 58-34 47
email: cbeleites at units.it
2008 Nov 03
1
Fourier Transform with irregularly spaced x
...ust works with irregularly spaced
signals: all functions I found take only the signal, not its x-axis.
Where should I look?
Or am I lacking some math that tells how to do without the frequency axis?
Thanks a lot for your help,
Claudia
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 (0 40) 5 58-34 47
email: cbeleites at units.it
2010 Feb 28
1
dots for sample
...dom sample.
For the moment, I use SetGeneric to add the dots argument, but this of
course gives a warning that the base function sample is overwritten (and
my colleagues are almost as scared of warnings as of errors...)
Thanks,
Claudia
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Valerio 2
I-34127 Trieste
ITALY
email: cbeleites at units.it
phone: +39 (0 40) 5 58-34 68
2010 Oct 28
2
R and Matlab
Dear Group,
I am looking for ways to use R and Matlab. Doing the data transformations in
R and using the data in Matlab to analyze with some pre-defined scripts.
Any good ways to transfer the data into matlab in its most recent version?
I tried using R.matlab but the writeMat output is not readable by Matlab.
I just need to output a data.frame and read it as is into matlab where I can
do any
2011 Feb 18
6
sort a 3 dimensional array across third dimension ?
I'm attempting to sort a 3 dimensional array that looks like this
> x
, , 1
[,1] [,2]
[1,] 9 9
[2,] 7 9
, , 2
[,1] [,2]
[1,] 6 5
[2,] 4 6
, , 3
[,1] [,2]
[1,] 2 1
[2,] 3 2
Such that it ends up like this ....
> y
, , 1
[,1] [,2]
[1,] 2 1
[2,] 3 2
, , 2
[,1] [,2]
[1,] 6 5
[2,] 4 6
, , 3
[,1] [,2]
2008 Dec 12
0
Fwd: Re: The end of Matlab (sorry, I messed up a sentence)
..., along.dim = find.dim (), e1, e2)
now, the heavy part are the still missing find.x () and find.dim () functions...
I'm not sure whether this would be worth the work, but maybe someone is around
who just knows how to do this.
Claudia
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 (0 40) 5 58-34 47
email: cbeleites at units.it
______________________________________________
R-help at r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting...
2010 Nov 12
1
Xapply question
...verload
the functionality for a specific class and I don't think it's a good idea to
invent a name for something that probably already exists.
If this function does not exist, any ideas how I should call it?
Thanks a lot,
Claudia
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 0 40 5 58-37 68
email: cbeleites at units.it
2010 Mar 12
2
Data frame question
Hi,
I have the following question about creating data frames. I want to
create a data frame with 2 components: a vector and a matrix.
Let me use a simple example:
y <- rnorm(10)
x <- matrix(rnorm(150), nrow=10)
Now if I do
dd <- data.frame(x=x, y=y)
I get a data frame with 16 colums, but if, according to the documentation,
I do
dd <- data.frame(x=I(x), y=y)
then str(dd)
2010 Oct 05
3
SweaveInput + keep.source = TRUE trouble
...esn't matter).
Building the example file I also found that \SweaveInput{} cannot be followed by
anything else on the line(not even a LaTeX comment).
\SweaveInput{x}y
complains that file xy is not found.
Best regards,
Claudia Beleites
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 0 40 5 58-37 68
email: cbeleites at units.it
-------------- next part --------------
A non-text attachment was scrubbed...
Name: baseline.devel.pdf
Type: application/pdf
Size: 52300 bytes
Desc: not avail...
2010 Aug 25
3
approxfun-problems (yleft and yright ignored)
Dear all,
I have run into a problem when running some code implemented in the
Bioconductor panp-package (applied to my own expression data), whereby gene
expression values of known true negative probesets (x) are interpolated onto
present/absent p-values (y) between 0 and 1 using the *approxfun -
function*{stats}; when I have used R version 2.8, everything had
worked fine,
however, after updating
2008 Oct 10
1
Creating a new connection type
Hello. I have an instrument, actually a step motor indexer that I want to drive from R. It uses an RS-232 connection. I already have a few C subroutines that I access from R but I would like to be able use R's connection related functions - readLines, writeLines, cat, read.table, etc - directly. Does any one have any suggestions on how a I should proceed to create a new connection type? Is it
2011 Jan 20
0
puzzled with plotmath
...o good search terms? Is it possible to search for the terms being
close to each other in RSiteSearch and/or RSeek? I get lots of introductory
documents as they point to plotmath and discuss matrices...
Thanks a lot for your help,
Claudia
--
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Universit? degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste
phone: +39 0 40 5 58-37 68
email: cbeleites at units.it
2011 Feb 02
2
slightly off topic...
i'm sorry to bother but...
sometimes theres an attachment in the posts on the list, a single file
called:
Teil 1.2
whys that? i dont want to open it to find out, as i have used computers
before ;)
therefore i suspect it to be either some security problem OR to be the
alternative HTML version that is claimed to have been deleted. any
light-shedding would be appreciated!
2008 Oct 31
2
Row and Column positions
Hi R,
m=data.frame(a=c(1,NA,5,5),b=c(4,5,6,7),c=c(NA,NA,NA,5))
I want to know the methods of getting row and column positions of NA in
the above dataframe. How do I do this?
Thanks, Shubha
This e-mail may contain confidential and/or privileged i...{{dropped:13}}
2008 Nov 19
2
simplify this instruction
Hi R users,
Is there a way to simplify this instruction:
ifelse(B=="0","A",
ifelse(B=="1","A",
ifelse(B=="2","A",
ifelse(B=="3","A",
ifelse(B=="4","A",
ifelse(B=="5","A",
ifelse(B=="6","A",
ifelse(B=="7","A",
2010 Mar 11
1
modifying the dots argument - how?
Is there a way to modify the dots-argument?
Let's consider I have a function that passes on its ... arguments to
another function.
For some reason I know, that some elements in ... will cause problems.
Can I modify the ... structure somehow, e.g. delete elements?
foo <- function(...){
innerFoo <- function(...){
}
AT THIS POINT I WANT TO MODIFY THE CONTENT OF ... BEFORE IT IS