Thanks to visit codestin.com
Credit goes to github.com

Skip to content

x[i] notation #24

@ggrothendieck

Description

@ggrothendieck

Suggest that the notation x[i] and x[[i]] be allowed in mp in which case these would all be the same

p1 <- mp("x1 * x2 + x1", stars = TRUE)
p2 <- mp("x[1] * x[2] + x[1]", stars = TRUE)
p3 <- mp("x[[1]] * x[[2]] + x[[1]]", stars = TRUE)

Also as.function(mp("x[2] + x[1]", stars = TRUE)) would use x[1], x[2] as the passed vector and not x[2], x[1].

Some method of specifying a sorted varorder in as.function would be nice as opposed to having to do this.

p <- mp("2*x2 + x1", stars = TRUE)
as.function(p, varorder = sort(vars(p)))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions