Displaying 7 results from an estimated 7 matches for "abu3ammar".
2004 Nov 22
7
timeDate
what package should I include to use timeDate? I want to convert a
double (num of millis) into date object.
2004 Dec 13
2
read attribute
How can I get a single attribute value of an object ?
I jhave the tiemSeries object
> ts1
Open
2003-10-09 02:00:00 1.27
2003-10-10 02:00:00 1.25
2003-10-13 02:00:00 1.27
2003-10-14 02:00:00 1.29
When I unclass ts1 I get:
> unclass(ts1)
list()
attr(,"Data")
Open
2003-10-09 02:00:00 1.27
2003-10-10 02:00:00 1.25
2003-10-13 02:00:00 1.27
2004 Nov 24
2
seriesMerge
Is there a function in R that is equivalent to S-PLUS's
seriesMerge(x1, x2, pos="union")
where x1, and x2 are of class timeSeries
seriesMerge is in S-PLUS's finmetrics. I looked into R's mergeSeries
(in fSeries part of Rmetrics) but I could not make it behave quite the
same. In R it expected a timeSeries object and a matrix of the same
row count. In S-PLUS when using the
2004 Dec 09
1
Finmetrics positions
Finmetrics (in S-PLUS) has teh functions "positions" (return the
positions of an ordered data object). Is there an equivalent to it in
Remtrics?
I am applying it to teh data of a time series.
2004 Nov 18
2
Informix database
We use Informix database. I was able to connect to the database with
S-PLUS by using its CONNECT/Java through the JDBC driver.
How can I connect to Informix with R, wither using JDBC or any other
method? we run Linux so I prefer a method other than ODBC.
Thankx for the help
2004 Nov 18
4
SJava
I failed to build SJava dure to teh error below. Any ideas?
# R CMD INSTALL -c SJava_0.68-0.tar.gz
* Installing *source* package 'SJava' ...
checking for java... /opt/j2sdk1.4.2_06//bin/java
Java VM /opt/j2sdk1.4.2_06//bin/java
checking for javah... /opt/j2sdk1.4.2_06//bin/javah
Looking in /opt/j2sdk1.4.2_06/include
Looking in /opt/j2sdk1.4.2_06/include/linux
checking for g++... no
2004 Dec 02
1
SJava convert problem
Consider this Java class:
class myClass {
final public static String[] testString () {
return new String[]{"my", "name", "is"} ;
}
final public static int[] testInt () {
return new int[]{5, 10, 15};
}
final public static char[] testChar () {
return new char[]{'x', 'y', 'z'};
}
}