search for: fimport

Displaying 19 results from an estimated 19 matches for "fimport".

Did you mean: import
2008 Sep 30
0
error in fBasics package
When I try to load "fBasics" package, I get following error/warning : > library(fBasics) Loading required package: fImport Loading required package: fSeries Loading required package: fBasics Loading required package: fImport Loading required package: fSeries Loading required package: fBasics Loading required package: fImport Loading required package: fSeries Loading required package: fBasics Loading required package: f...
2011 Aug 16
2
trouble installing packages on OpenSuse 11.4
...ome help in getting it right. My env is a freshly setup OpenSuse 11.4 on an amd desktop. I have not yet installed gcc (Will I need gcc to install packages? I have installed make, assuming R might need it.). I have tried it both under R2.12 and R2.13. I have a list of packages to install such as fImport, fGarch, zoo, and several more. I am logged in as root because I want the packages to be visible to all users a) R CMD INSTALL "fImport" This produces no results. b) sudo R CMD INSTALL "fImport" This downloads timeDate and gets stuck there. (I did sudo based on my experience...
2009 May 03
1
fImport data from Australian stock exchange
Dear all, I have been importing data into R from yahoo using yahooSeries, however the older version I was using no longer works with the syntax I have developed. I downloaded the latest package and it downloads data from the U.S. just fine, but the ticker codes for the Australian stock exchange (asx) do not get downloaded. a simple example, this works (US stock): stock<-yahooSeries(symbols =
2008 May 21
3
Problem with R or fBasics Package (PR#11495)
...R: After loding fBasics packages log funtion doesn't work like as fallow: Cenap ERDEMIR Hacettepe University Turkey > log(20) [1] 2.995732 > local({pkg <- select.list(sort(.packages(all.available = TRUE))) + if(nchar(pkg)) library(pkg, character.only=TRUE)}) Loading required package: fImport Loading required package: fSeries Loading required package: robustbase Loading required package: fCalendar Loading required package: fEcofin Loading required package: fUtilities Loading required package: MASS Rmetrics Package fUtilities (270.73) loaded. Rmetrics Package fEcofin (270.73) loaded. Rm...
2008 Jun 02
1
Help : R-packages : Problems loading package fSeries
...der to load the package fGarch after. However, it says the following message. > local({pkg <- select.list(sort(.packages(all.available = TRUE))) + if(nchar(pkg)) library(pkg, character.only=TRUE)}) Loading required package: fBasics (Error : ... infinite recursion) Loading required package: fImport Loading required package: fSeries Loading required package: fBasics Loading required package: fImport Loading required package: fSeries . . . Loading required package: fBasics Loading required package: fImport Loading required package: fSeries After repeating many warnings like this (at least 10...
2008 Apr 07
2
tcltk issue remains
Dear R-help, I'm trying to load the fGarch package and keep running into problems with tcltk: After succesfully instaling fGarch (and dependencies) I get: >library(fGarch) Loading required package: fBasics Loading required package: fImport Loading required package: fSeries Loading required package: robustbase Loading required package: fCalendar Loading required package: MASS Loading required package: fEcofin Loading required package: fUtilities Loading required package: RUnit RUnit 0.4.17 loaded. Loading required package: spatial...
2008 Dec 30
5
Downloading data from Economagic
I was trying to dw data from Economagic [http://www.economagic.com/em-cgi/data.exe/libor/day-ussnon], using following code : library(fimport) dat2 = economagicSeries("libor/day-ussnon", frequency = "daily") Here I see that data is not complete, downloaded data starts from "2007-12-31 ", whereas actual data is available from 2001. secondly, how I convert that data to a Zoo-object? -- View this message in...
2008 Aug 07
3
Downloading Yahoo data
Hi R, I am trying to download the data from R. I give the below command. > library(fImport) > yahooSeries("IBM") trying URL 'http://chart.yahoo.com/table.csv?s=IBM&a=7&b=08&c=2007&d=7&e=07&f=2008& g=d&x=.csv' Error in download.file(url = url, destfile = file, method = method) : cannot open URL 'http://chart.yahoo.com/table.c...
2009 Oct 14
3
currency conversion function?
Dear all Is there any R function that would perform currency conversion using up-to-date exchange rates? I would be looking for a function that allows to download recent exchange rates (say, from Yahoo!) and then use these in converting currencies (say, USD to EUR). I am not sure whether r-sig-finance would be more appropriate, but the (off-)topic feels general enough to me. Thank you Liviu --
2010 Jul 13
1
Time Variable and Historical Interest Rates
....... } .... --------------- Also, append is ignored when I use "write.csv". I had to resort to using "write.table". Is this always the case? As for the historical interest rates, thank you all very much for providing me with the information (Finance mailing list). I used the fImport package and called the method "fredSeries" to download "DPRIME" data for the same time frame as currency data I have (Thank you, Mr. Gallon). But that is only data for US. What about other countries? I was talking to a professor and he said that there was a way to read data fr...
2009 Apr 27
1
Extract one element from yahooKeystats data
I am trying to extract one particular piece of data(Float) from all the data returned by yahooKeystats, but thus far I'm having no luck. This is what I've got so far: > library(fImport) Loading required package: timeSeries Loading required package: timeDate > data<-yahooKeystats("IBM") trying URL 'http://finance.yahoo.com/q/ks?s=IBM' Content type 'text/html; charset=utf-8' length unknown opened URL .......... .......... .......... ....... downloade...
2010 Nov 19
3
Sweave Dynamic Graph Question
...ear will go to one page. so from 1/1/2000 to 11/19/2010. i will have 11 pages, and each page will have 12 graphs (jan to dec) except for 2010. I am able to do it in R, but when i use sweave, I can only print the last page. any help would be greatly appreciated Thanks Cameron #R code library(fImport) IBM <- yahooSeries("IBM", from="2000-01-01") IBM.Close <- IBM[,"IBM.Close"] rng=range(time(IBM.Close)) Syr <- as.numeric(format(rng[1],"%Y")) Eyr <- as.numeric(format(rng[2],"%Y")) Smth <- as.numeric(format(rng[1],"%m&qu...
2010 Apr 12
1
N'th of month working day problem
...; find a way to explain to R to keep the last working day of month if I >> choose the 29th, 30th or 31st dates... >> >> I enclose a working version of the function and a script for demo purposes. >> >> Many thanks in advance, >> Costas >> >> library(fImport) >> library(zoo) >> DJ<-yahooSeries("^DJI", frequency="daily", nDaysBack=10000) >> DJd<-as.zoo(DJ[,4]) >> >> ### Choose number of day for month >> >> chooseday<-function(z, day) >> >> { >> >> # z....
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)
2008 Sep 09
2
yahoo finance into R
Hi R, I am familiar with the basics of R. To learn more I would like how to get data from Yahoo!finance directly into R. So basically I want a data frame or matrix to do some data analysis. How do I do this? Thank you very much. Thomas -- View this message in context: http://www.nabble.com/yahoo-finance-into-R-tp19385481p19385481.html Sent from the R help mailing list archive at Nabble.com.
2009 Mar 16
0
[OT] Debian now has a new section 'gnu-r'
...gnu-r r-cran-effects gnu-r r-cran-farma gnu-r r-cran-fasianoptions gnu-r r-cran-fassets gnu-r r-cran-fbasics gnu-r r-cran-fbonds gnu-r r-cran-fcalendar gnu-r r-cran-fcopulae gnu-r r-cran-fecofin gnu-r r-cran-fexoticoptions gnu-r r-cran-fextremes gnu-r r-cran-fgarch gnu-r r-cran-fimport gnu-r r-cran-fmultivar gnu-r r-cran-fnonlinear gnu-r r-cran-foptions gnu-r r-cran-foreign gnu-r r-cran-fportfolio gnu-r r-cran-fregression gnu-r r-cran-fseries gnu-r r-cran-ftrading gnu-r r-cran-funitroots gnu-r r-cran-futilities gnu-r r-cran-gdata gnu-r r-cran-getopt gnu-r r-cr...
2010 Aug 25
1
Documenting S4 Methods
I'm in the process of converting some S3 methods to S4 methods. I have this function : setGeneric("enrichmentCalc", function(rs, organism, seqLen, ...){standardGeneric("enrichmentCalc")}) setMethod("enrichmentCalc", c("GenomeDataList", "BSgenome"), function(rs, organism, seqLen, ...) { ... ... ... })
2007 Oct 30
6
trouble installing building packages from source using R 2.6.0 on Ubuntu Gutsy AMD64
I have recently upgraded to Ubuntu Gutsy and, for the first time, am using a 64-bit installation. After failing miserably to install R from source, not a problem for me in the past with a 32-bit install, I went the route of using the Debian Etch build. This went smoothly, but I am unable to update my numerous R and BioConductor packages, getting non-zero exit status errors on each package. Is
2009 Aug 24
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week New packages ------------ Updated packages ---------------- New reviews ----------- This email provided as a service for the R community by http://crantastic.org. Like it? Hate it? Please let us know: cranatic at gmail.com.