search for: feds

Displaying 20 results from an estimated 1239 matches for "feds".

Did you mean: fds
2013 Apr 03
7
Canadian politcal party colours in ggplot2
A stupid question but does anyone know how to express the actual colours used by the main Canadian political parties? I want to do a couple of ggplot2 plots and have lines or rectangles that accurately reflect the party colours. I can probably play around with RColorBrewer or something to figure it out but if some some already has got them it would save me some time especially with the NDP
2009 Nov 15
6
Inquiry:Problem in installing Asterisk 1.4.13 on my Debian 3.1 server
Dear All Please be informed that I need to install Asterisk 1.4.13 on my Debian 3.1 server . But I got the following message when trying for "#./configure" : "error: no acceptable C compiler found in $PATH" Can you please do me favor and let me know what is the problem ? Let me thank you in advance -------------- next part -------------- An HTML attachment was scrubbed... URL:
2000 Oct 02
3
R vs S-PLUS with regard to memory usage
I am trying to translate code from S-PLUS to R and R really struggles! After starting R with the foll. R --vsize 50M --nsize 6M --no-restore on a 400 MHz Pentium with 192 MB of memory running Linux (RH 6.2), I run a function that essentially picks up an external dataset with 2121 rows and 30 columns and builds a lm() object and also runs step() ... the step() takes forever to run...(takes very
2000 Oct 03
5
Where is gam?
I noticed that there is no generalised additive model functions in R (1.1.1) ... is there a package that implements them? Thanks Prasad ***************************************************************** Mr. Anantha Prasad, Ecologist/GIS Specialist USDA Forest Service, 359 Main Rd. Delaware OHIO 43015 USA Ph: 740-368-0103 Email: aprasad at fs.fed.us Web:
2023 Dec 31
0
[Bug 15546] New: disable of sorting when files to transfer is fed via --files-from
https://bugzilla.samba.org/show_bug.cgi?id=15546 Bug ID: 15546 Summary: disable of sorting when files to transfer is fed via --files-from Product: rsync Version: 3.2.0 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 Component: core
2010 Mar 28
3
Need help in speex..
Hi I am using Jspeex for my project which requires compression of audio in realtime..so far i managed to capture sound using java's sound.The capturing format i use is 8 bit 8khz ,stereo pcm.The captured sound is buffered and fed to encoder.Its fed to decoder,whose output is again buffered for sometime.But when i try to play it back i could hear sound only in right channel.Left channel is
2011 Nov 21
3
How do I query "..." in a function call?
This is probably a very noobish question, but if I want to create a function that allows an undetermined number of, say, numeric vectors to be fed to it, I would use: myfunction = function(...) { # Do something } Right? If so, how do I a) count the number of vectors "fed" to the function, and b) how do I treat those vectors as variables, e.g. for the call:
2009 May 19
2
Getting lm() to work with a matrix
Hi I'm fairly new to R and am trying to analyse some large spectral datasets using stepwise regression (fairly standard in this area). I have a field sampled dataset, of which a proportion has been held back for validation. I gather than step() needs to be fed a regression model and lm() can produce a multiple regression. I had thought something like: spectra.lm <-
2020 Oct 29
5
FREDR and R 3.6
I tried to install the fredr package yesterday to access the data series hosted by the St. Louis Fed but my installation of R, version 3.6, tells me it is not available from a cran repository. I could not find any information on this on the fredr information package and was wondering if anyone here might know?
2000 Jan 14
0
Q: Solaris, two interfaces, outgoing smb fed throug 'wrong' interface!
Hello! Problem: Outbound data goes through default interface instead of specified, causing congestion. Question: How can I instruct samba to tell Solaris to SEND data through specified network interface? Detailed: I have a solaris filesserver with two network interfaces, hme0 and hme1. I'd like NFS to use hme0 and smb hme1. I intsruct samba to only listen for connections on the
2010 Mar 18
0
[LLVMdev] How to link LLVMCore.a into a custom pass that is fed to opt
Hey all, I need to use C bindings in a pass that I am authoring (specifically, I want to use the OCaml bindings that are tied to the C bindings to author the pass). However, this requires that I link in LLVMCore to provide said bindings to my library. From what I've read, there is a known issue with linking LLVMCore into a module that is fed to opt. Namely, you get the following assertion:
2010 Feb 02
1
Subset and point plot
OK, I need help plotting. I have column headings of Day, Wgt, Foodin, Rep, Grp and Tanks. Rep=c(1,2,3) and Tanks=c(a1,a2,a3,a4,a5,a6, c1,c2,c3,c4,c5,c6, h1,h2,h3,h4,h5,h6). I created a subset where I only would like Rep=2, and Tanks=c(a4,c4,h4) and would like to graph (points) of Wgt and Day. I would think that I only need 3 colors, but when I run with only 3, only 2 lines show up. When I add
2011 Sep 11
5
Link between Qt GUI and R
hi, i want to build a Qt front-end GUI which communicates with R, and i am not sure what i should use for the interface. There seems to be many ways: R.dll, Rinside, Rcpp, RQt, Rtools... . what is the best way? please advice. basically what i want to do is that, the Qt GUI will allow users to make selection and enter numbers, these inputs will be fed to R, already written .R files will perform
2016 Dec 01
1
Fed 25: Samba suddenly refuses all XP connections, Win 7 OK
I have several XP VM's and its also physically one on a on a multiboot laptop. Just today, they all gave "unknown username or bad password" to the main samba server which has been working fine for years. There is nothing wrong with the accounts because Win 7 clients using the same credentials are fine. On the LAN I also have Ubuntu servers and their samba shares are OK from XP.
2010 Apr 04
2
[Trisquel-users] I am fed up with YouTube!
May be wish for an addon which on-the-fly convert flv/mp4 videos to ogg in browser. Firefox can run/display ogg videos. Currently I have to download them manually using download helper extension and then i use OggConvert to convert it into ogg video. Then I watch it. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 May 31
1
subset-analogue removing fed in indexes?
Hello, Here's my issue: I want to plot the following vectors: > x <- c(0.0, 2.0, 15.0, 100.0, 105.0, 105.1, 110.0, 120.0, 120.1, 130.0) > data <- c(8.75, 8.75, 16.25, 38.75, 61.25, 8.75, NA, 8.75, NA, NA) and avoid the line discontinuations caused by 'NA'. > plot_data <- na.omit(data) will clean up 'data' for me, but now I need to get a 'plot_x'
2005 Sep 16
0
Job opening at the Fed
The Money and Reserves Analysis section in the Division of Monetary Affairs at the Federal Reserve Board in Washington has an opening for an Information Systems Analyst (ISA). The job listing can be found here: http://careers.peopleclick.com/jobposts/Client40_FRBOG/BU1/External/281-813.htm This is not really a statistics position, although it does involve SAS (and possibly R, see below)
2002 Mar 26
2
size of vectors to be fed to MDCT
Hi, as we are trying to implement MDCT in hardware, we are caring now about the "n" (size of input and output vectors to and from MDCT). As I have looked in the code, this "n" is chosen from the Ogg/Vorbis stream data in info.c:_vorbis_unpack_info() which means this "n" can vary aribitrarily (as the power of 2) depending only on the value got from song data? or is
2013 Jan 08
1
Levels in new data fed to SVM
Hi all, I've encountered an issue using svm (e1071) in the specific case of supplying new data which may not have the full range of levels that were present in the training data. I've constructed this really primitive example to illustrate the point: > library(e1071) > training.data <- data.frame(x = c("yellow","red","yellow","red"), a =
2020 Oct 30
0
FREDR and R 3.6
On Thu, 29 Oct 2020, H writes: > I tried to install the fredr package yesterday to > access the data series hosted by the St. Louis Fed but > my installation of R, version 3.6, tells me it is not > available from a cran repository. > > I could not find any information on this on the fredr information package and was wondering if anyone here might know? > Just for