search for: bankofamerica

Displaying 20 results from an estimated 31 matches for "bankofamerica".

2006 Aug 12
0
Software Upgrade, Read this message
2013 Jan 22
6
plot two time series with different length and different starting point in one figure.
Hello, I do have two different time series A and B, they are different in length and starting point. A starts in Jan, 2012 and ends in Dec, 2012 and B starts in March, 2012 and ends in Nov, 2012. How can I plot those two series A and B in the same plot? I.E., from Jan. 2012 - Feb, 2012, it would have one data point from A and from Mar, 2012-Nov, 2012, it would have two data points from A and B,
2013 Mar 21
4
easy way of paste
Hello, Is there a better way to use paste such as: a = paste(colnames(list.indep)[1],colnames(list.indep)[2],colnames(list.indep)[3],colnames(list.indep)[4],colnames(list.indep)[5],sep="+") > a [1] "aa+dummy1+dummy2+bb+cc" I tried a = paste(colnames(list.indep)[1:5],sep="+") > a [1] "aa" "dummy1" "dummy2"
2007 Aug 24
4
perception of graphical data
...ual perception, graphic representation. Previously, I didn't have the flexibility of R's graphics, so I didn't need to think so much. I've read some of Edward S. Tufte's books, but found them more qualitative than quantitative. Thanks! Richard 212-933-3305 / richard.c.yeh at bankofamerica.com
2008 Oct 21
3
R Help
Hi, I have the following code and am using R 2.7.2: JIBqq <- (Jqrt.IB[2:length(Jqrt.IB)]/Jqrt.IB[1:(length(Jqrt.IB)-1)])-1 JIBqq <- cbind(zoo(JIBqq, Jqrt.time[2:length(Jqrt.time)])) y.JIBqq <- merge(JIBqq,lag(JIBqq,-1)) > y.JIBqq JIBqq lag(JIBqq, -1) 2004-06-30 0.003318909 NA 2004-09-30 -0.028536136 0.003318909
2013 Mar 21
2
How to store data frames into pdf file and csv file.
Hello, I have a data frame > mdl.summary est.coef std.err t.stat intercept 0.0011625517 0.0002671437 4.351784 aa -0.0813727439 0.0163727943 -4.969997 dummy1 -0.0002534873 0.0001204000 -2.105376 dummy2 -0.0007784864 0.0001437537 -5.415417 bb -0.0002856727
2013 Mar 22
4
error while extracting the p-value from adf.test
Hello all, I tried to extract the p-value from adf.test in tseries; however, I got the error message such as > ht=adf.test(list.var$aa) > ht$p-value Error in ht$p - value : non-numeric argument to binary operator > ht Augmented Dickey-Fuller Test data: list.var$aa Dickey-Fuller = -2.3147, Lag order = 4, p-value = 0.4461 alternative hypothesis: stationary > ht$data [1]
2006 Dec 21
1
multinom(nnet) analogy for biglm package?
...ELsmp #1 SMP Tue May 17 17:52:23 EDT 2005 i686 i686 i386 GNU/Linux box$ R --max-vsize='4G' WARNING: --max-vsize=4G=4'M': too large and ignored 5. If all else fails, I can sample the data and check the sample for an appropriate distribution. Richard 212-933-3305 / richard.c.yeh at bankofamerica.com NOTICE TO RECIPIENTS: Any information contained in or attached to this message is intended solely for the use of the intended recipient(s). If you are not the intended recipient of this transmittal, you are hereby notified that you received this transmittal in error, and we request that you p...
2008 Oct 07
0
RBloomberg - Converting international stock prices into $US
...e CCY parameter set to "USD". How would I do something comparable in R with the blpGetHistoricalData function of RBloomberg?? Obviously, I could download exchange rates and do the calculations myself but was hoping to avoid this. Thanks very much in advance, Dan LaPushin dan.lapushin@bankofamerica.com [[alternative HTML version deleted]]
2003 Sep 05
0
world read permissions on system level files
From: "Biyala, Urvi" <Urvi.Biyala@bankofamerica.com> >I need to trim the world read permissions from the system sensitive files. I know that it would be safe to trim the permissions from many of the configuration files in /etc. But I was not sure if I could safely tighten the permissions form other system files. Does any one know of any d...
2013 Mar 20
3
How to look at the source code for predict()
Hello, I try to look at the source code of predict() it turns out that I cannot find it. I can see it with debug(library), but not efficient. Can someone help? Thanks, Rebecca ---------------------------------------------------------------------- This message, and any attachments, is for the intended r...{{dropped:5}}
2013 May 28
1
The weak exogeneity test in R for the Error Correction Model?
Hello all, I would like to carry out a single-equation approach of the Error Correction Model such as Delta_y(t) = a + b*y(t-1) + c*x1(t-1) + d*x2(t-1) + e*delta_x1(t) + f*delta_x2(t) + epsilon(t) Where, a, b, c, d, e, f are coefficients to be estimated, y is the dependent variable, and x1, x2 are independent variables. For the single equation approach of ECM, there is a requirement of the
2006 Sep 22
1
How to retrieve results of most recent command?
...mmand histories to a file or script. The 'Emacs Speaks Statistics' (ESS) package seems to offer shortcuts for command history expansion, but not results history. I'm a bit reluctant to start using Emacs again, having quit it for VI over a decade ago. 212-933-3305 / richard.c.yeh at bankofamerica.com NOTICE TO RECIPIENTS: Any information contained in or attached to this message is intended solely for the use of the intended recipient(s). If you are not the intended recipient of this transmittal, you are hereby notified that you received this transmittal in error and we request that you p...
2013 Jan 18
2
A smart way to use "$" in data frame
Hello all, I have a data frame dataa: newdate newstate newid newbalance newaccounts 1 31DEC2001 AR 1 1170 61 2 31DEC2001 VA 2 4565 54 3 31DEC2001 WA 3 2726 35 4 31DEC2001 AR 3 2700 35 The following gives me the balance of state AR:
2013 Feb 01
2
Range difference of plot two arrays in one plot
Hello all, When I tried to plot the following two arrays in one figure with the following: x = c(0,0,0,10,20,30) y = c(40,50,60,70,80,90) plot(x, type='o', ylim=c(min(x),max(x))) par(new=T) plot(y, type='l', ylim=c(min(y),max(y))) Found that the first points and last points from those two arrays are overlapping together, but the value 30 is not equal to 90. How could I draw
2010 Oct 14
2
Including data in packages
Dear List, I would like to include a couple of objects in a package I am developing and I don't really get it yet. The objects should be available after package load as some functions depend on it. I tried the following: 1) Bundling all objects that I need in the file '/R/sysdata.rda' as described in the "Writing R Extensions" manual on page 7 2)
2009 Jul 09
2
How to Populate List
...puzzle. Which prevents Alzheimer's [1]. - Godmar [1] http://www.timesonline.co.uk/tol/life_and_style/article508785.ece     [[alternative HTML version deleted]] ------------------------------ Message: 37 Date: Wed, 08 Jul 2009 10:50:27 -0400 From: "Curley, Jane" <jane.curley@bankofamerica.com> Subject: [R] please remove me from this list To: r-help@r-project.org Message-ID:     <C92AF9E76F41C5469314C1993B365E000101D1D2@ex2k.bankofamerica.com> Content-Type: text/plain     [[alternative HTML version deleted]] ------------------------------ Message: 38 Date: Wed, 08 Ju...
2002 Aug 11
0
building with gcc 3.0 on solaris??
hi- i have a very, very 'hip' and current Solaris box, and i'm having a problem building R. first off, it denies support for Gnome and Tcl/Tk during Configure, despite these being installed and their 'bin' and 'lib' directories beuing in the path and ld_library_path, respectively. then, duirng 'make' it can't find the symbols 'BZ2_bzWriteClose,
2002 Aug 11
0
ps
the undefined symbols are in 'connections.o' -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch
2003 Sep 05
0
Question about world read permissions on system level files
All, I need to trim the world read permissions from the system sensitive files. I know that it would be safe to trim the permissions from many of the configuration files in /etc. But I was not sure if I could safely tighten the permissions form other system files. Does any one know of any documentation on this. Or can any one tell me if it is safe to trim world read permissions from the system