Skip to contents

Status depends on sequence information updates.

Usage

OEIS_status(x)

Arguments

x

Can be one of the following:

  • A character string with sequence ID.

  • A S3 object of classes OEIS_xml and xml_document, with the sequence content from OEIS web.

  • An object of OEIS_sequence class, that contains all sequence related data.

  • An object of OEIS_ID class.

Value

A character string with the OEIS sequence status.

Note

Possible status can be:

  • "approved"

  • "editing"

  • "proposed"

  • "reviewed".

Examples

if (FALSE) { # \dontrun{
id <- "A000108"
test_seq_xml <- OEIS_xml(id)
OEIS_status(test_seq_xml)
} # }