Displaying 20 results from an estimated 25 matches for "jpy".
Did you mean:
jay
2007 Apr 16
1
Names in vector occurring in another vector
I have a vector of character strings such as
mainnames<-c("CAD","AUD") and another vector say
checknames<-c("CAD.l1","AUD.l1","JPY.l1","EUR.l1","CAD.l2","AUD.l2","JPY
.l2","EUR.l2")
I want a new vector of character strings that is just
resultnames<-c("JPY.l1","EUR.l1","JPY.l2","EUR.l2")
Because any time a name occurs in checknam...
2009 Mar 03
1
zoo and coredata() classes
...havent been able
to find a satisfactory workaround yet.
Heres a simple example of what I'm talking about (the following data frame
contains numeric columns that contains NAs):
> head(ebs)
time src tstamp code bid ask
1 2009-03-03 13:03:29.536 perf.Tib_listener 14980321164
EBS.REC.EURJPY=EBS.NaE 123.48 NA
2 2009-03-03 13:03:29.786 perf.FilteringPublisher 14980565658 EUR.JPY.SPOT
123.48 123.51
3 2009-03-03 13:03:29.786 perf.Tib_listener 14980566116
EBS.REC.EURJPY=EBS.NaE NA 123.51
4 2009-03-03 13:03:30.036 perf.FilteringPublisher 14980824852 EUR.JPY.SPOT
123.49 123.50
5 2009-0...
1999 Aug 13
1
strange scan, count.fields
Does anybody understand what's going on here:
I have the following ascii file called "y.txt"
"USD-DEM" "USD-JPY" "DEM-JPY"
0.344901 4.78712 4.442
0.345715 4.7882 4.44189
0.350657 4.79065 4.44177
0.35347 4.79065 4.43616
0.35368 4.78957 4.43622
0.35361 4.78982 4.43669
0.353821 4.79036 4.43622
0.352767 4.78899 4.43634
0.353119 4.78916 4.43545
In R I do the following:
wu161215{adrian}...
2004 Mar 20
9
Operating on windows of data
I have a data set that is comprised of, for simplicity, a vector of numbers that I want to march across in overlapping windows of say 10 values each, computing a couple of values for each window. Is there a vectorized way to do this, or do I truly need to resort to looping--I think so? Any other clever thoughts?
Thanks,
Sean
[[alternative HTML version deleted]]
2006 May 08
2
Creating a "Foo has_many bars" association where bar isn''t a model.
Hi
Let''s say we have model Foo. Each Foo instance can have several bars.
Those bars are primitive, so they shouldn''t be models. For example,
Foo might be a type of convention, and the bars might be years the
convention was held in. Naively, we would have a conventions_years
date, and put:
has_many :years
inside class Convention. But then we''d get an error, since for
2007 May 23
1
I made some progress on my previous "systemfit" question but still not quite there
Surprisingly, I played around with some test code and below actually
creates equations that look correct.
tempmat<-matrix(10,nrow=6,ncol=6)
restrictmat<-diag(6)
colnames(tempmat)<-c("AUD.l1","CHF.l1","CAD.l1","GBP.l1","EUR.l1","JPY.l
1")
rownames(tempmat)<-c("AUD","CHF","CAD","GBP","EUR","JPY")
eqn<-list()
for ( i in 1:6 ) {
datares <- tempmat[, which(restrictmat[i, ] == 1),drop=FALSE]
eqn[[i]]<-paste(rownames(tempmat)[i]," ~","-1&q...
2012 Apr 27
1
multivariate xts merge question
...ppy with adding n new columns from the returned data frame (vector).
Unfortunately, I have been unable to accomplish this.
apply(x,1,function(y,ns) procState(y,ns), colnames(x))
gives me a list, where a non-intrinsic attribute contains the timestamp.
$`2012-03-16 16:04:00`
aud cad chf eur gbp jpy nzd usd
1 -3 -5 7 5 1 -1 3 -7
$`2012-03-16 16:05:00`
aud cad chf eur gbp jpy nzd usd
1 -3 -5 7 5 -1 1 3 -7
How do I merge this with the original xts?
I tried merge(x,unlist(y)) to flatten it, but instead of getting n new
columns I get the timestamps repeated n times.
I d...
2012 Jul 27
2
How can I access the title of a table read via read.csv?
Hi,
I have a table which I can read via read.csv:
fx1<-read.csv(file="A_FX_M.csv", header=TRUE)
TIME REER NTD JPY GBP HKD
1 198001 124.26 36.030 237.96 2.263980 4.8366
2 198002 126.59 36.030 244.05 2.290426 4.8765
3 198003 128.33 36.026 248.62 2.206045 4.9960
4 198004 127.85 36.063 251.67 2.215330 4.9760
5 198005 124.40 36.050 228.35 2.302026 4.8891
6 198006 124.64 36.028 218.05 2.336995 4.9017
7 19800...
2012 Jul 27
2
How can I access an element of a string?
...p
> > Subject: [R] How can I access the title of a table read via read.csv?
> >
> > Hi,
> >
> > I have a table which I can read via read.csv:
> >
> > fx1<-read.csv(file="A_FX_M.csv", header=TRUE)
> >
> > TIME REER NTD JPY GBP HKD
> > 1 198001 124.26 36.030 237.96 2.263980 4.8366
> > 2 198002 126.59 36.030 244.05 2.290426 4.8765
> > 3 198003 128.33 36.026 248.62 2.206045 4.9960
> > 4 198004 127.85 36.063 251.67 2.215330 4.9760
> > 5 198005 124.40 36.050 228.35 2.302026 4.8891
>...
2012 Jan 19
8
sumarizar
*Hola!!! resulta que tengo unos datos de divisas ordenados por fechas
(días) los que he convertido a formato tipo YYYY-MM-DD donde DD siempre es
01:*
*
*
*
EUR.resto$date<-as.Date(EUR.resto$date)
EUR.resto$mo <- substr(EUR.resto$date,6,7)
EUR.resto$yr <- substr(EUR.resto$date, 1,4)
2005 Nov 02
2
Bug report on get.hist.quote
> get.hist.quote(instrument="INR/USD", provider="oanda", start="2005-10-20")
trying URL 'http://www.oanda.com/convert/fxhistory?lang=en&date1=10%2F20%2F2005&date=11%2F01%2F2005&date_fmt=us&exch=INR&exch2=&expr=USD&expr2=&margin_fixed=0&&SUBMIT=Get+Table&format=ASCII&redirected=1'
Content type
2017 Sep 18
2
JRE 8.1 for CentOS6
On Thu, Sep 14, 2017 at 7:09 PM, Ulf Volmer <u.volmer at u-v.de> wrote:
> On 15.09.2017 00:59, Larry Martell wrote:
>> On Thu, Sep 14, 2017 at 6:45 PM, Ulf Volmer <u.volmer at u-v.de> wrote:
>
>>>> This is what I get from that:
>>>>
>>>> application/x-java-vm IcedTea class,jar
>>>
>>> That's OpenJDK instead of
2017 Sep 14
2
JRE 8.1 for CentOS6
On Thu, Sep 14, 2017 at 5:30 PM, Ulf Volmer <u.volmer at u-v.de> wrote:
> On 14.09.2017 21:26, Larry Martell wrote:
>> On Thu, Sep 14, 2017 at 3:08 PM, Stephen John Smoogen <smooge at gmail.com> wrote:
>
>>> So it sounds like the links needed for the plugin to work are not
>>> configured on the system. So you have some symlinks pointing to the
>>>
2017 Sep 14
2
JRE 8.1 for CentOS6
On Thu, Sep 14, 2017 at 3:08 PM, Stephen John Smoogen <smooge at gmail.com> wrote:
> On 14 September 2017 at 14:51, Larry Martell <larry.martell at gmail.com> wrote:
>> On Thu, Sep 14, 2017 at 2:32 PM, Ulf Volmer <u.volmer at u-v.de> wrote:
>>> On 14.09.2017 19:54, Larry Martell wrote:
>>>
>>>> Where would I do that? This is something
2015 Aug 13
2
Clunky Xorg with latest 6.7 upgrade?
Is it just me or does Xorg/Gnome seem slow and clunky to any other
desktop users once the 6.7 upgrade is done?
$ uname -a
Linux CentOS501.homegroannetwork 2.6.32-573.1.1.el6.x86_64 #1 SMP
Sat Jul 25 17:05:50 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
$ cat /etc/centos-release
CentOS release 6.7 (Final)
Top shows
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
32160 root
2015 Aug 14
2
Clunky Xorg with latest 6.7 upgrade?
On Thu, 2015-08-13 at 23:51 -0700, Gordon Messmer wrote:
> On 08/13/2015 02:44 PM, Bill Maltby (C4B) wrote:
> > Top shows
> > PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
> > 32160 root 20 0 259m 104m 22m R 76.5 1.3 559:07.79 Xorg
> > 23391 hardtolo 20 0 6293m 215m 26m S 16.9 2.7 21:49.86 java
>
> Well, what's process
2017 Sep 14
3
JRE 8.1 for CentOS6
On Thu, Sep 14, 2017 at 6:45 PM, Ulf Volmer <u.volmer at u-v.de> wrote:
> On 14.09.2017 23:56, Larry Martell wrote:
>> On Thu, Sep 14, 2017 at 5:30 PM, Ulf Volmer <u.volmer at u-v.de> wrote:
>
>>> Again, please enter 'about:plugins' in the address bar of your browser
>>> to make sure, that the right java version is activated.
>>
>> This
2007 Sep 14
8
Cortado java applet
I looking for a simple way to use cortado java applet
on my website, help
---------------------------------
Sick of deleting your inbox? Yahoo!7 Mail has free unlimited storage. Get it now.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/theora/attachments/20070915/2df326af/attachment.htm
2003 Jul 29
1
(In)valid RSA key?
Hi.
In testing my SSH 2 server implementation (Dropbear), I've come across
certain RSA hostkeys which fail for use with PuTTY as a client. Converting
the keys for use with OpenSSH they also fail with PuTTY, which leads me to
wonder whether they are valid keys or not.
A sample key is attached, the important point to note is that the modulus
(n) value doesn't have a multiple-of-8 number of
How to change paypal url from sandbox to papal original url. i am using paypal lib -- paypal (2.0.0)
2009 Mar 19
0
How to change paypal url from sandbox to papal original url. i am using paypal lib -- paypal (2.0.0)
...:only_path => false, :action => ''paypal_ipn'' ),:return
=>url_for(:only_path => false, :action => ''paypal_success''),:cancel_return
=> url_for(:only_path => false, :action => ''paypal_failure''),:currency_code
=> ''JPY'',:custom => request.remote_ip, :on0 => user.id.to_s, :on1 =>
"HJCART"%>
<%= image_submit_tag("/images/btn_submit1.gif") %>
<%end%>
Default the submit tag went to sandbox site (
https://www.sandbox.paypal.com/cgi-bin/webscr) , how to change...