R/OEIS_mathematica.R

Defines functions OEIS_mathematica.OEIS_internal OEIS_mathematica.OEIS_ID OEIS_mathematica.character OEIS_mathematica

Documented in OEIS_mathematica

#  ----------------------------------------------------------------------------
#  OEIS.R PACKAGE
#  Data from The On-Line Encyclopedia of Integer Sequences in R
#  File: OEIS_mathematica.R
#  (c) 2017 - Enrique PĂ©rez Herrero
#  email: eph.project1500@gmail.com
#  The MIT License (MIT)
#  ---------------------------------------------------------------------------

#  OEIS_mathematica
#' OEIS Wolfram Mathematica code from sequence \code{internal_format}
#'
#' These lines give `Mathematica` code to produce the sequence.
#' @inheritParams OEIS_description
#'
#' @importFrom magrittr "%>%"
#'
#' @seealso * \code{\link{OEIS_description}}
#' @seealso * \code{\link{OEIS_author}}
#' @seealso * \code{\link{OEIS_internal_format}}
#' @seealso * \code{\link{OEIS_formula}}
#' @seealso * \code{\link{OEIS_sequence}}
#' @seealso * \code{\link{OEIS_xml}}
#' @return A character string with the OEIS sequence lines of examples or
#'   \code{NULL} if there are no examples.
#'
#' @examples
#'
#' id <- "A105805"
#' internal_format <- OEIS_internal_format(id)
#' mathematica <- OEIS_mathematica(internal_format)
#' cat(mathematica, sep = "\n")
#'
#' @export
OEIS_mathematica <- function(x) {
  UseMethod("OEIS_mathematica", x)
}

#' @method OEIS_mathematica character
#' @export
OEIS_mathematica.character <- function(x) {
  OEIS_check(x) %>%
    OEIS_mathematica
}

#' @method OEIS_mathematica OEIS_ID
#' @export
OEIS_mathematica.OEIS_ID <- function(x) {
  x %>%
    OEIS_internal_format %>%
    OEIS_mathematica %>%
    char0toNULL
}

#' @method OEIS_mathematica OEIS_internal
#' @export
OEIS_mathematica.OEIS_internal <- function(x) {
  . <- NULL
  x[x$tag == "%t", ]$line %>%
    gsub("_", "", .) %>%
    char0toNULL
}

#' @method OEIS_mathematica OEIS_xml
#' @export
OEIS_mathematica.OEIS_xml <- function(x) {
  . <- NULL
  mathematica <- x %>%
    OEIS_df %>%
    .[.$Line == "MATHEMATICA", ] %>%
    .$Description
  if (identical(mathematica, character(0))) {
    mathematica <- NULL
  } else {
    mathematica %<>%
      strsplit(., "\n") %>%
      sapply(., trimws) %>%
      .[. != "", ]
  }
  mathematica
}

#' @method OEIS_mathematica OEIS_sequence
#' @export
OEIS_mathematica.OEIS_sequence <- function(x) {
  x$mathematica
}
EnriquePH/OEIS.R documentation built on March 15, 2023, 8:01 a.m.