filterDate {tosca} | R Documentation |
Subcorpus With Date Filter
Description
Generates a subcorpus by restricting it to a specific time window.
Usage
filterDate(...)
## Default S3 method:
filterDate(
text,
meta,
s.date = min(meta$date, na.rm = TRUE),
e.date = max(meta$date, na.rm = TRUE),
...
)
## S3 method for class 'textmeta'
filterDate(
object,
s.date = min(object$meta$date, na.rm = TRUE),
e.date = max(object$meta$date, na.rm = TRUE),
filtermeta = TRUE,
...
)
Arguments
... |
Not used. |
text |
Not necessary if |
meta |
Not necessary if |
s.date |
Start date of subcorpus as date object |
e.date |
End date of subcorpus as date object |
object |
|
filtermeta |
Logical: Should the meta component be filtered, too? |
Value
textmeta
object if object
is specified,
else only the filtered text
. If a textmeta
object is
returned its meta data are filtered to those texts which appear in the corpus
by default (filtermeta
).
Examples
texts <- list(A="Give a Man a Fish, and You Feed Him for a Day.
Teach a Man To Fish, and You Feed Him for a Lifetime",
B="So Long, and Thanks for All the Fish",
C="A very able manipulative mathematician, Fisher enjoys a real mastery
in evaluating complicated multiple integrals.")
corpus <- textmeta(meta=data.frame(id=c("A", "B", "C", "D"),
title=c("Fishing", "Don't panic!", "Sir Ronald", "Berlin"),
date=c("1885-01-02", "1979-03-04", "1951-05-06", "1967-06-02"),
additionalVariable=1:4, stringsAsFactors=FALSE), text=texts)
subcorpus <- filterDate(object=corpus, s.date = "1951-05-06")
subcorpus$meta
subcorpus$text
[Package tosca version 0.3-2 Index]