Displaying 20 results from an estimated 76 matches for "frb".
Did you mean:
feb
2008 Jun 18
1
FRB/US
...r not R is the
right tool - I would like to discuss the idea with someone who is familiar
with this sort of thing as I have limited experience running econometric
models
Thanks in advance to anyone who can help - if I can figure out how to do
this I would like to make a ready to run version of the FRB/US model an open
source project
cheers,
Tony
[[alternative HTML version deleted]]
2013 Mar 25
1
[LLVMdev] Types in TableGen instruction selection patterns
...src2),
> "some assembler",
> [(set $dst, (Op $src1, $src2))]>;
>From the PPC changes, I see that this is already possible under a slightly
different form:
def FSUBS : AForm_2<59, 20,
(outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
"fsubs $FRT, $FRA, $FRB", FPGeneral,
- [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
+ [(set f32:$FRT, (fsub f32:$FRA, f32:$FRB))]>;
Sebastian
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Foru...
2006 Jul 07
0
A game that you can be FRB
I am making a game
that you can be FRB
and you can control money supply.
anyone interested in this game?
The start-up project name is
GOLD MINE.
here is my document.
(1)overview map
http://goldmine.schtuff.com/gold_mine_overview_1_en_png?action=binary
(2)usecase diagram
http://goldmine.schtuff.com/gold_mine_1_0000_usecase_diagram_pn...
2004 Mar 30
1
Where: package licenses
...ooking for.
-Jason
The DESCRIPTION file for a package lists the license; this is also given
in the CRAN entry for each package.
-thomas
Marc Schwartz <MSchwartz@MedAnalytics.com>
03/30/2004 09:02 AM
Please respond to MSchwartz
To: Jason.L.Higbee@stls.frb.org
cc: R-Help <r-help@stat.math.ethz.ch>
Subject: Re: [R] Where: package licenses
On Tue, 2004-03-30 at 08:51, Jason.L.Higbee@stls.frb.org wrote:
> R:
>
> This stems from my curiosity about the previous thread about a
> request
> for glm.nb code...
2013 Mar 25
0
[LLVMdev] Types in TableGen instruction selection patterns
Jakob Stoklund Olesen wrote:
> I have updated TableGen to support a new format for instruction selection patterns.
>
> Before:
>
> def : Pat<(subc IntRegs:$b, IntRegs:$c), (SUBCCrr IntRegs:$b, IntRegs:$c)>;
>
> After:
>
> def : Pat<(subc i32:$b, i32:$c), (SUBCCrr $b, $c)>;
>
> Since the pattern matching happens on a DAG with type labels, not
2004 May 21
2
RQuantlib ?Windows Binary?
...linux, but that isn't on CRAN.
Through that Rmetrics thread, I think I read that all CRAN packages have
source (except for one), but shouldn't all CRAN packages also have binary?
Think they should.
Jason Higbee
Research Associate
Federal Reserve Bank of St. Louis
E: jason.l.higbee@stls.frb.org
The views expressed in this email are the author's and not necessarily
those of the Federal Reserve Bank of St. Louis or the Federal Reserve
System
[[alternative HTML version deleted]]
2004 Mar 30
0
Where: package licenses
...-5623
>>> Sundar Dorai-Raj <sundar.dorai-raj at PDF.COM> 03/30/04 10:51AM >>>
You can access this from within R using
package.description("MASS")[["License"]]
package.description attempts to parse the DESCRIPTION file.
-sundar
Jason.L.Higbee at stls.frb.org wrote:
> Thanks Thomas and Marc that is what I was looking for.
>
> -Jason
>
>
>
>
> The DESCRIPTION file for a package lists the license; this is also
given
> in the CRAN entry for each package.
>
> -thomas
>
>
>
>
>
&...
2013 Mar 24
5
[LLVMdev] Types in TableGen instruction selection patterns
I have updated TableGen to support a new format for instruction selection patterns.
Before:
def : Pat<(subc IntRegs:$b, IntRegs:$c), (SUBCCrr IntRegs:$b, IntRegs:$c)>;
After:
def : Pat<(subc i32:$b, i32:$c), (SUBCCrr $b, $c)>;
Since the pattern matching happens on a DAG with type labels, not register classes, I think it makes more sense to specify types directly on the input
2004 Mar 30
3
Where: package licenses
R:
This stems from my curiosity about the previous thread about a request
for glm.nb code. The issue of package licenses was brought up and I was
hoping for some clarification on that. Using the function license() or
licence() gives info on the license for R, but something like
license(MASS) does not give info on the license for the MASS package
(perhaps it might be good to expand the
2009 Jun 17
2
[LLVMdev] possible PowerPC (32bits) backend bug
...(FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
Requires<[FPContractions]>;
The unique feature of this parttern is that it maps a pair of
LLVM IR instructions into a single PPC instruction.
def FNMSUBS : AForm_1<59, 30,(outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
"fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
[(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),F4RC:$FRB)))]>,
Requires<[FPContractions]>;
Now I wrote a little toy program that, when compiled, uses this inst...
2012 Mar 16
1
Change in behavior of update.views()?
I haven't seen this cryptic warning before:
> update.views('Robust')
Warning message:
In update.views("Robust") :
The following packages are not available: covRobust, distr, FRB, MASS, mblm, multinomRob, mvoutlier, quantreg, RandVar, rgam, RobAStBase, robfilter, RobLox, RobRex, robust, RobustAFT, robustbase, ROptEst, ROptRegTS, rrcov, sandwich, wle
> library(covRobust)
>
It is puzzling because — as the second command shows — the package covRobust is installed.
Her...
2007 Feb 12
3
How to override functions in namespaces?
In package A I have askForString(), which asks the user for a string.
Also in package A I have defined ssh(), which calls askForString().
Package B has package A as a prerequisite.
In package B I redefine askForString() to take advantage of a nicer user
interface made available by B, namely the Emacs mini-buffer prompt.
Packages B and A are both on the search path, with B ahead of A. If I
call
2004 Apr 22
1
Re: pausing a program
...or days and I need to (if possible)
pause the program. Any ideas on how to do that? If I use stop, how
certain can I be that all the statements executed in the previous
iteration of the for loop?
Thanks,
Jason Higbee
Research Associate
Federal Reserve Bank of St. Louis
E: jason.l.higbee@stls.frb.org
[[alternative HTML version deleted]]
2004 Jul 09
1
cor.test p-value ties
...6 pairs of ties. Does anyone know if this would likely have a great
effect on the p-values calculated.. The values look good; tau = -0.68
with p-value = 8e-9 and rho = =0.84 with p-value = 8e-8.
Thanks,
Jason Higbee
Research Associate
Federal Reserve Bank of St. Louis
E: jason.l.higbee@stls.frb.org
The views expressed in this email are the author's and not necessarily
those of the Federal Reserve Bank of St. Louis or the Federal Reserve
System
[[alternative HTML version deleted]]
2005 Feb 25
2
return from nested function?
Is is possible from within a function to cause its caller to return()?
I have a function that lets user make edits to certain objects, and then
checks that the edited objects still make sense. If they don't, the function
puts up a notifier that the edits are being discarded and then returns,
something like:
if(badEdits){
notifyDialog("bad edits will be ignored")
2007 Oct 22
1
Newbie help: Data in an arma fit
...JUL2006, 5.25
...
and the ARMA coefficients came out different. My question is: Should I
delete all the holidays from my data file? What exactly does R do with the
"N" values in the fit for the ARMA coefficients?
As a related question, the weekends don't have entries (since the FRB is
closed on all weekends). Does the fact that my data is not regularly spaced
pose a problem for ARMA fitting?
Many thanks!
--
View this message in context: http://www.nabble.com/Newbie-help%3A-Data-in-an-arma-fit-tf4668584.html#a13336403
Sent from the R help mailing list archive at Nabble.com....
2009 Aug 03
1
hist2d
I'd like to use the hist2d function. What library contains it? Thanks!
Simon Firestone
Economist, Fair Lending Enforcement
Division of Consumer and Community Affairs
Federal Reserve Board
Washington, DC 20551
simon.b.firestone@frb.gov
(202) 785-6056
[[alternative HTML version deleted]]
2009 Jun 10
2
DO NOT REPLY [Bug 6461] New: rsync occassionally issues the message "rsync error: unexplained error (code 255) at main.c(1506) [generator=3.0.4]"
...rator=3.0.4]"
Product: rsync
Version: 3.0.4
Platform: Sparc
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: James.Purdon@ny.frb.org
QAContact: rsync-qa@samba.org
rsync occassionally issues the message "rsync error: unexplained error (code
255) at main.c(1506) [generator=3.0.4]", apparently as it is performing clean
up of child processes. Does this message indicate an issue with the transfer?
Is there...
2004 Sep 21
2
constrained optimization in R
R:
I need to minimize a function such that the parameters when used in
another function result in a particular value, which i fix. That is, I
need min(f(a,b)) given g(a,b)=X, where min(.) is the minimum, f(.) and
g(.) are functions (with unknown gradients) of parameters a and b and X is
a fixed value. What optimization function(s) in R do you suggest?
constrOptim looks like it will work
2008 Oct 21
1
Replacement for Intel SDS2 Motherboard
...rvers go south. The hardware
was an Intel SDS2 motherboard (EATX), Dual Intel PIII 1.4GHz FC-PGA2-L2
512KB, 3GB (6x512MB) 168 pin DIMM, SDRAM 133MHz/PC-133-ECC with 1x3Ware
7006-2 and 2x3Ware 7506-4LP RAID controllers. The OS was RHEL3.
Apparently, according to the beep codes, there has been an FRB failure.
I've migrated most of the services
(mail,web,proxy,samba,mysql,mailman,home directories) to an interim box
running CentOS 5.2.
At a minimum, I need to replace the motherboard and CPUS (I'm told they
are unrecoverable). All the remaining hardware I plan to re-use, as well
as m...