Displaying 8 results from an estimated 8 matches for "linardi".
2012 Jun 15
1
R under JVM
...t enough or even in this case
the different instances "share" something so they are not really "fully
independent" ?
Thanks again
Angelo
-----Messaggio originale-----
Da: R. Michael Weylandt [mailto:michael.weylandt@gmail.com]
Inviato: venerdì 15 giugno 2012 16.16
A: LINARDI ANGELO
Cc: r-help@r-project.org
Oggetto: Re: [R] R: Securities earning covariance
I'm somewhat confused:
i) What does this have to do with your subject line?
ii) There does not exist -- to my knowledge -- an implementation of R
which runs on the JVM.
iii) Have you simply looked...
2011 Mar 28
2
"Holes" in a data frame with time intervals
...be:
* Sort the data by "key" + start date
* For each occurrence add 1 day to end date and compare the
result with the start date of the following occurrence
Can someone help me in finding a "declarative" way to do it ?
Thank you in advance
Angelo Linardi
** Le e-mail provenienti dalla Banca d'Italia sono trasmesse in buona fede e non
comportano alcun vincolo ne' creano obblighi per la Banca stessa, salvo che cio' non
sia espressamente previsto da un accordo scritto.
Questa e-mail e' confidenziale. Qualora l'avess...
2010 May 06
2
Data frame "pivoting"
...- -
V25
I started using the operator "by" obtaining the different "slices" of
data:
by(df,df$PROPERTY,list)
but then ?
I also tried using tapply:
tapply(df$CID,df$PROPERTY,list)
obtaining a list but I am not able to go on.
Can you help me ?
Thank you in advance
Angelo Linardi
** Le e-mail provenienti dalla Banca d'Italia sono trasmesse in buona fede e non
comportano alcun vincolo ne' creano obblighi per la Banca stessa, salvo che cio' non
sia espressamente previsto da un accordo scritto.
Questa e-mail e' confidenziale. Qualora l'avesse ricevuta...
2008 Jun 05
2
Securities earning covariance
...).
Besides partitioning the input and using a loop, are there any smarter
solutions (eventually using split and other ways of "subgroup merging"
to solve the problem ?
Are there any "shortcuts" using statistical built-in functions (e.g.
cov, vcov) ?
Thank you in advance
Angelo Linardi
** Le e-mail provenienti dalla Banca d'Italia sono trasmesse in buona fede e non
comportano alcun vincolo ne' creano obblighi per la Banca stessa, salvo che cio' non
sia espressamente previsto da un accordo scritto.
Questa e-mail e' confidenziale. Qualora l'avesse ricevuta...
2012 Jun 15
1
R: Securities earning covariance
...ce of R ?
Should I "duplicate" the initial R installation to get different
instances with different libraries ? Is it enough or even in this case
the different instances "share" something so they are not really "fully
independent" ?
Thanks so much for you help
Angelo Linardi
** Le e-mail provenienti dalla Banca d'Italia sono trasmesse in buona fede e non
comportano alcun vincolo ne' creano obblighi per la Banca stessa, salvo che cio' non
sia espressamente previsto da un accordo scritto.
Questa e-mail e' confidenziale. Qualora l'avesse ricevuta pe...
2008 Jun 06
1
Agreggating data using external aggregation rules
...e)
>From DF, RULE_v1
Where v1=COD_IN
Group by v2, v3,v4, v5, v6, v7
So the first choice would be using a database; the second one would be
splitting the data frame and then joining the results.
Is there any other possibility to merge+aggregate caused by the merge ?
Thank you in advance
Angelo Linardi
** Le e-mail provenienti dalla Banca d'Italia sono trasmesse in buona fede e non
comportano alcun vincolo ne' creano obblighi per la Banca stessa, salvo che cio' non
sia espressamente previsto da un accordo scritto.
Questa e-mail e' confidenziale. Qualora l'avesse ricevuta...
2008 Sep 18
1
Adding 1 month to a dataframe column
...19 2007-12-31 RM -5
20 2007-12-31 RM -4
21 2007-12-31 MI -3
I tried with seq.Date:
seq.Date(a$"DATA",by="1 month",len=2)[2]
but it works only for single values (the "from" must have length=1).
Any hints ?
Thank you in advance
Angelo Linardi
** Le e-mail provenienti dalla Banca d'Italia sono trasmesse in buona fede e non
comportano alcun vincolo ne' creano obblighi per la Banca stessa, salvo che cio' non
sia espressamente previsto da un accordo scritto.
Questa e-mail e' confidenziale. Qualora l'avesse ricevuta pe...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.