Displaying 13 results from an estimated 13 matches for "ccil".
Did you mean:
cci
2007 May 10
4
Value at Risk
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt.
Name: nicht verf?gbar
URL: https://stat.ethz.ch/pipermail/r-help/attachments/20070510/b26482f4/attachment.pl
2007 Jul 26
5
ROC curve in R
Hi,
I need to build ROC curve in R, can you please provide data steps / code
or guide me through it.
Thanks and Regards
Rithesh M Mohan
[[alternative HTML version deleted]]
2006 Oct 28
0
ALARM!!!! Re: regarding large csv file import
...nager,
Economic Research & Surveillance Department,
Clearing Corporation Of India Limited.
Address: 5th, 6th, 7th Floor, Trade Wing 'C', Kamala City, S.B. Marg,
Mumbai - 400 013
Telephone(Office): - +91 022 6663 9398 , Mobile(Personal) (0)9821286118
Email(Office) :- gyadav@ccilindia.co.in , Email(Personal) :-
emailtogauravyadav@gmail.com
"jim holtman" <jholtman@gmail.com>
28-10-06 09:17 AM
To
"gyadav@ccilindia.co.in" <gyadav@ccilindia.co.in>
cc
Subject
Re: ALARM!!!! Re: [R] regarding large csv file import
I think that the rea...
2006 Oct 28
0
ALARM!!!! Re: regarding large csv file import
...nager,
Economic Research & Surveillance Department,
Clearing Corporation Of India Limited.
Address: 5th, 6th, 7th Floor, Trade Wing 'C', Kamala City, S.B. Marg,
Mumbai - 400 013
Telephone(Office): - +91 022 6663 9398 , Mobile(Personal) (0)9821286118
Email(Office) :- gyadav@ccilindia.co.in , Email(Personal) :-
emailtogauravyadav@gmail.com
"jim holtman" <jholtman@gmail.com>
28-10-06 09:17 AM
To
"gyadav@ccilindia.co.in" <gyadav@ccilindia.co.in>
cc
Subject
Re: ALARM!!!! Re: [R] regarding large csv file import
I think that the rea...
2007 Aug 08
2
cointegration analysis
Hello,
I tried to use urca package (R) for cointegration analysis. The data
matrix to be investigated for cointegration contains 8 columns
(variables). Both procedures, Phillips & Ouliaris test and Johansen's
procedures give errors ("error in evaluating the argument 'object' in
selecting a method for function 'summary'" respectiv "too many
variables,
2007 Apr 09
1
How to solve differential and integral equation using R?
Hello,
I want to know if there are some functions or packages to solve differential
and integral equation using R.
Thanks.
Shao chunxuan.
[[alternative HTML version deleted]]
2007 Aug 14
2
pakages
Good Morning
i am in doctorate.
i want to ask for the packages of R,
i tried to install it, but it appears " not found". each time i have to
delete and install again the programme R.
Are there another method for installing the package?
thank you
2007 Jul 25
2
Regarding Bivariate normal distribution.
Dear all R gurus,
My question is related to statistics rather directly to R. Suppose
(X,Y) has a bivariate normal distrubution. I want to find two values
of X and Y say x, and y respectively, such that:
P[X<x, Y<y] = 0.05
My questions are :
1. Can x and y be uniquely found?
2. If it is, how I can find them using R
Your help will be highly appreciated.
Thanks and regards,
2007 Sep 04
3
how to do interpolation
Hello R Users,
How to make a variable equidistance with time i.e. how to interpolate a
variable if it is not sampled at equal time interval.
Many thanks,
Regards,
Yogesh
[[alternative HTML version deleted]]
2007 Jul 16
3
R and Copula
hi,
first I want to say that I'm new here, and new with copula and R.
That is the reason why I'm writing, if somebody can help me.
I have to make an example of Copula.
On internet I've found this forum and that copula can calculate with R.
Can somebody help me with the thing how can I start and where can read about
these stuffs.
Thank to all who can help!
--
View this message
2007 May 14
6
Conditional Sums for Index creation
Hi,
Apologies for the long mail. I have a data.frame with columns of
price/mcap data for a portfolio of stocks, and the date. To get the
total value of the portfolio on a daily basis, I calculate rowSums of
the data.frame.
> set.seed(1)
> ab <- matrix(round(runif(100)*100),nrow=20,ncol=5)
> ab[1:5,4:5] <- NA
> ab[6:10,5] <- NA
> ac <- as.data.frame(ifelse(ab <=
2007 May 09
3
Removing a list of Objects
Hi,
I have a simple beginner's question on removing a list of
objects. Say I have objects C243.Daily1, C243.Daily2...C243.Daily5 in my
workspace. I'd like to remove these without using rm five times.
So I write.
> a <- list(paste("C243.Daily",sep="",1:5))
> rm(a)
Obviously this wouldn't work, as it would only remove the object a.
But is there any way
2007 May 10
3
Getting the last day of the month.
Hi,
Given a date, how do I get the last date of that month? I have
data in the form YYYYMM, that I've read as a date using
> x$Date <-
as.Date(ISOdate(substr(x$YearEnd,1,4),substr(x$YearEnd,5,6),1))
But this gives the first day of the month. To get the last day of the
month, I tried
> as.Date(as.yearmon(x$Date,frac=0))
But I don't get the last day of the month here. (Tried