Skip to content

Commit 24762f2

Browse files
committed
Remove 'fts' package (archived on 2022-05-09)
1 parent ea26858 commit 24762f2

File tree

8 files changed

+2
-176
lines changed

8 files changed

+2
-176
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Authors@R: c(
1111
Depends: zoo (>= 1.7-12)
1212
Imports: methods
1313
LinkingTo: zoo
14-
Suggests: timeSeries, timeDate, tseries, chron, fts, tis, RUnit
14+
Suggests: timeSeries, timeDate, tseries, chron, tis, RUnit
1515
LazyLoad: yes
1616
Description: Provide for uniform handling of R's different time-based data classes by extending zoo, maximizing native format information preservation and allowing for user level customization and extension, while simplifying cross-class interoperability.
1717
License: GPL (>= 2)

NAMESPACE

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -307,12 +307,6 @@ S3method(as.xts,timeSeries)
307307
# irts (package:tseries) specific methods
308308
S3method(as.xts,irts)
309309

310-
# fts (package:fts) specific methods
311-
if (getRversion() >= "3.6.0") {
312-
S3method(fts::as.fts, xts)
313-
}
314-
S3method(as.xts,fts)
315-
316310
# Date specific methods
317311
S3method(as.xts,Date)
318312

R/fts.R

Lines changed: 0 additions & 59 deletions
This file was deleted.

R/xts.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# additional methods are in correspondingly named .R files
2424
# current conversions include:
2525
# timeSeries, its, irts, ts, matrix, data.frame, and zoo
26-
# MISSING: fts, tis, fame
26+
# MISSING: tis, fame
2727
#
2828
# this file includes the main xts constructor as well as the reclass
2929
# function.

R/zzz.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ function(pkg, generic, class, fun = NULL)
6464
# }
6565
if (getRversion() < "3.6.0") {
6666
register_s3_method("timeSeries", "as.timeSeries", "xts")
67-
register_s3_method("fts", "as.fts", "xts")
6867
if (utils::packageVersion("zoo") < "1.8.5") {
6968
# xts:::as.zoo.xts was copied to zoo:::as.zoo.xts in zoo 1.8-5
7069
register_s3_method("zoo", "as.zoo", "xts")

inst/unitTests/runit.fts.R

Lines changed: 0 additions & 102 deletions
This file was deleted.

man/as.xts.Rd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ objects into a uniform format for use within \R.
3333

3434
It is possible with a call to \code{as.xts} to
3535
convert objects of class \code{timeSeries}, \code{ts}, \code{irts},
36-
\code{fts},
3736
\code{matrix}, \code{data.frame}, and \code{zoo}.
3837

3938
\code{xtsible} safely checks whether an object can be converted to

man/as.xts.methods.Rd

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
\alias{as.xts.xts}
66
\alias{as.xts.zoo}
77
\alias{as.xts.ts}
8-
\alias{as.xts.fts}
98
\alias{as.xts.data.frame}
109
\alias{as.xts.matrix}
11-
\alias{as.fts.xts}
1210
\title{ Convert Object To And From Class xts }
1311
\description{
1412
Conversion S3 methods to coerce data objects of
@@ -31,9 +29,6 @@ losing any attributes of the original format.
3129

3230
\method{as.xts}{matrix}(x, order.by, dateFormat="POSIXct",
3331
frequency=NULL, ..., .RECLASS=FALSE)
34-
35-
36-
as.fts.xts(x)
3732
}
3833
\arguments{
3934
\item{x}{ data object to convert. See details for supported types }

0 commit comments

Comments
 (0)