search for: wuertz

Displaying 20 results from an estimated 62 matches for "wuertz".

2008 May 21
3
Problem with R or fBasics Package (PR#11495)
...es 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. Rmetrics, (C) 1999-2006, Diethelm Wuertz, GPL fCalendar: Time, Date and Calendar Tools Package fSeries (260.72) loaded. Rmetrics - Financial Time Series Objects Rmetrics, (C) 1999-2007, Diethelm Wuertz, GPL Attaching package: 'fImport' The following object(s) are masked from package:fCalendar : economagicImp...
2004 Oct 27
2
Skewness and Kurtosis
Hi, in which R-package I could find skewness and kurtosis measures for a distribution? I built some functions: gamma1<-function(x) { m=mean(x) n=length(x) s=sqrt(var(x)) m3=sum((x-m)^3)/n g1=m3/(s^3) return(g1) } skewness<-function(x) { m=mean(x) me=median(x) s=sqrt(var(x)) sk=(m-me)/s return(sk) } bowley<-function(x) { q<-as.vector(quantile(x,prob=c(.25,.50,.75)))
2003 Jun 10
1
Fwd: dse package - load failure
Hello, Sorry a second time again, Maybe I have to add that I'm running R under Windows 2000/XP, and that the download works properly under 1.062 but not under 1.070. Diethelm >Date: Tue, 10 Jun 2003 19:25:33 +0200 >To: r-devel@stat.math.ethz.ch >From: Diethelm Wuertz <wuertz@itp.phys.ethz.ch> >Subject: dse package - load failure >Cc: pgilbert@bank-banque-canada.ca > >Dear Paul, >Hello R Maintainers, > >I'm for the first time here and I hope its the right place to give the >following information: > >The contributed R-packa...
2004 Jun 13
1
Rmetrics - New Built 190.10055
...t of the box under Windows, Linux, and Mac OSX. In addition new functionality has been added, and some fixes has been done. New functions and example files have been added. Please inspect the FAQ and CHANGES <CHANGES.html> files. Goto: www.rmetrics.org . Suggestions are welcome! Diethelm Wuertz www.rmetrics.org [[alternative HTML version deleted]]
2007 Oct 31
1
problem with package fSeries
...le to use the garch library. thanks a lot for any help, Balazs Torma > log(1) [1] 0 > require("fSeries") Loading required package: fSeries Loading required package: robustbase Loading required package: fCalendar Loading required package: fEcofin Rmetrics, (C) 1999-2006, Diethelm Wuertz, GPL fCalendar: Time, Date and Calendar Tools Package fSeries (260.72) loaded. Rmetrics - Financial Time Series Objects Rmetrics, (C) 1999-2007, Diethelm Wuertz, GPL > log(1) Error in .Internal(log(x)) : no internal function "log" >
2006 Feb 14
9
read.table
I have a file named "test.csv" with the following 3 lines: %y-%m-%d;VALUE 1999-01-01;100 2000-12-31;999 > read.table("test.csv", header = TRUE, sep = ";") delivers: X.y..m..d VALUE 1 1999-01-01 100 2 2000-12-31 999 I would like to see the following ... %y-%m-%d VALUE 1 1999-01-01 100 2 2000-12-31 999 Note, >
2004 Nov 10
2
fSeries
...RT I: Estimate GARCH models of the following type ARCH(2) # and GARCH(1,1) with normal conditional distribution functions. # PART II: Simulate GARCH models of the following type, ARCH(2) # and GARCH(1,1), # with normal conditional distribution functions. # # Author: # (C) 2002, Diethelm Wuertz, GPL # ############################################################################ #### # PART I: Estimation: # Settings: set.seed(547) # Bollerslev's GARCH(1,1) with normal innovations: model = list(omega = 1e-6, alpha = 0.1, beta = 0.8, mu = 0) x = garchSim(model, n = 1000) fit =...
2006 Jan 30
1
fExtreme packages
Hello, I am a new user of R. I am trying to use the packages fBasics and fExtremes when i am running the examples I get few error. Could someone tell me what is happenig? Thank you beforehand. from Fbasics packages: xmpfBasics() Error in file(file, "r") : unable to open connection In addition: Warning message: cannot open file '/usr/lib/R/library/fBasics/demoIndex'
2008 Jun 11
0
ETH Internship - Dynamic Portfolio Asset Allocation
...The candidate should have a strong quantitative background and have experience in data modelling with the R language. The application should include a letter of motivation (highlighting your interest and prior knowledge in the internship topic) and an up-to-date CV. Please send your application to wuertz at phys.ethz.ch. If you need further information, please contact us. PD Dr. Diethelm Wuertz Econophysics Group at the Institute of Theoretical Physics ETH Zurich www.ethz.ch www.phys.ethz.ch www.rmetrics.org NOTE: Rmetrics Workshop: http://www.rmetrics.org/meielisalp.htm June 29th - July 3rd Me...
2007 Aug 20
2
library(fCalendar) timeDate("12.03.2005",format="%d.%m.%Y")
Dear R users, I have problem with the library fCalendar. I am not using the US standard format notations. It seems like it is not possible to have different format than the US standards. Anyone how knows a way to go around this problem? Here is the code I enter: myDate = "12.03.2005" timeDate(myDate, format = "%d.%m.%Y") And I get following error message: Error in if
2004 Jun 26
1
Problem setting environment variable in R/zzz.R
I am trying to get the Rmetrics.org component package fBasics by Diethelm Wuertz into a Debian package. Thanks to a lot of work by Diethelm, it is _almost_ there. It fails 'R CMD check' for me if I do not have the TZ environment variable set [1], yet works fine as long as I set TZ. I figured I could patch this in R/zzz.R and do ## set a timezone if none found in...
2005 Dec 01
2
about comparison of KURTOSIS in package: moments and fBasics
...quot;) R.version ################ OUTPUT > > rnorm(1000) -> x > > > library(moments) > > > kurtosis(x) [1] 3.145274 > skewness(x) [1] 0.04898635 > > > detach("package:moments") > library(fBasics) Rmetrics, (C) 1999-2005, Diethelm Wuertz, GPL fBasics: Markets, Basic Statistics, Hypothesis Testing > > > kurtosis(x) [1] 0.1389865 > skewness(x) [1] 0.04891289 > > > detach("package:fBasics") > > R.version _ platform i386-pc-mingw32 arch i386 os mi...
2005 Jul 26
3
farimaSim
Hello! I installed the fSeries package to get some farima time-series which i tried with farimaSim, but unfortunately i got always an error. I tried it this way: > farimaSim(n = 1000, model = list(ar = 0.5, d = 0.3, ma = 0.1), method="freq") Error in farimaSim(n = 1000, model = list(ar = 0.5, d = 0.3, ma = 0.1), : ... used in an incorrect context Some ideas? Regards, ___
2004 Dec 12
1
Re: [R-sig-finance] dates and times on Windows for fMetrics
...1.28 243843 # 2003-10-14 14:00:00 1.29 1.29 1.27 1.27 180211 # Is that right, there are 2 hours difference from Perth to Sydney? # Note there are some other FinCenters which are not up to date. # The list will be checked and updated with the next version of Rmetrics. # Regards # Diethelm Wuertz Tom Mulholland wrote: > First things first > > R "R version 2.0.1, 2004-11-15" > OS.type "windows" > GUI "Rgui" > > I thought that I had the time and date stuff nearly under control. I > don't get the ubiquitous "GMT&...
2007 Jun 16
1
fSeries - Ox - ver: 240.10068 - Steps to make it work
-Bugs and fixes reported to Diethelm Wuertz. -In the interim. To make the Ox functions part of the fSeries package work please follow the following steps. ------------------------------------------------- 1. Install R-project. 2. Install fSeries. 3. Download: http://www.core.ucl.ac.be/~laurent/G@RCH/site/xbdcons/garch42.zip (G@RCH pack...
2004 Nov 11
0
ROracle SQL length limitation
...(Roger D. Peng) 33. "<<-" assignment no long work in class methods (Gang Liang) 34. Re: "<<-" assignment no long work in class methods (Witold Eryk Wolski) 35. Re: R with Sun Studio Fortran 95 compiler (Prof Brian Ripley) 36. Re: fSeries (Diethelm Wuertz) 37. Re: fSeries (Diethelm Wuertz) 38. RSPerl problem with testing (Alicia Amadoz) 39. Re: RSPerl problem with testing (Prof Brian Ripley) 40. smoothing techniques (dave wilton) 41. Re: R works on Fedora Core 3 (Martyn Plummer) 42. Re: R works on Fedora Core 3 (Gavin Simpson) 43. RODB...
2017 Nov 02
2
"prob" package alternative
...-darwin15.6.0 (64-bit) > Running under: OS X El Capitan 10.11.6 > > > > > > packageDescription("fAsianOptions") > Package: fAsianOptions > Version: 3010.79 > Revision: 5522 > Date: 2013-06-23 > Title: EBM and Asian Option Valuation > Author: Diethelm Wuertz and many others, see the SOURCE file > Depends: R (>= 2.4.0), timeDate, timeSeries, fBasics, fOptions > Suggests: RUnit > Maintainer: Yohan Chalabi <yohan.chalabi at rmetrics.org> > Description: Environment for teaching "Financial Engineering and > Computational Finance...
2017 Nov 02
0
"prob" package alternative
...3.4.2 Patched (2017-10-04 r73465) Platform: x86_64-apple-darwin15.6.0 (64-bit) Running under: OS X El Capitan 10.11.6 > packageDescription("fAsianOptions") Package: fAsianOptions Version: 3010.79 Revision: 5522 Date: 2013-06-23 Title: EBM and Asian Option Valuation Author: Diethelm Wuertz and many others, see the SOURCE file Depends: R (>= 2.4.0), timeDate, timeSeries, fBasics, fOptions Suggests: RUnit Maintainer: Yohan Chalabi <yohan.chalabi at rmetrics.org> Description: Environment for teaching "Financial Engineering and Computational Finance" Note: Several part...
2008 Dec 19
0
R/Finance 2009: Applied Finance with R -- Call for Papers
...09: Applied Finance with R on April 24 and 25, 2009, in Chicago, IL, USA Confirmed keynote speakers include: Patrick Burns (Burns Statistics) David Kane (Kane Capital) Roger Koenker (U of Illinois at Urbana/Champaign) David Ruppert (Cornell) Diethelm Wuertz (ETH Z?rich) Eric Zivot (U of Washington) We invite all users of R in Finance to submit one-page abstracts or complete papers (in txt/pdf/doc format). We encourage papers both on academic research topics and related to use of R by Finance practitioners. Presenters are stro...
2009 Oct 19
0
useR! 2010: submission & registration started!
...rised of invited lectures and user-contributed sessions as well as half-day tutorials presented by R experts on July 20, 2010, prior to the conference. Invited speakers will include Mark Handcock, Frank Harrell Jr, Friedrich Leisch, Michael Meyer, Richard Stallman, Luke Tierney, Diethelm Wuertz. We invite you to submit abstracts on topics presenting innovations or exciting applications of R. The call for papers along with the link for abstract submission is available at http://www.R-project.org/useR-2010/#Call ***********************************************************************...