Code Monkey home page Code Monkey logo

Comments (5)

AdrianHordyk avatar AdrianHordyk commented on August 21, 2024

I'm not clear on the problem. Can you expand on it with a reproducible example of what you mean?

The recommended approach to creating LB_lengths objects in R is:

LenData <- new('LB_lengths', verbose=FALSE)
LenData@LMids <- LenMids
LenData@LData <- LengthComps
etc

from lbspr.

iagomosqueira avatar iagomosqueira commented on August 21, 2024

I would expect new() to take any named object passed to it and place it in the right slot. So

LenData <- new('LB_lengths', verbose=FALSE, LMids=seq(1,10))

should place that vector in LMids

> LenData@LMids
logical(0)

Our MSE code, for example, parses various objects and then constructs a list to then call new, or the creator function if available, using do.call. So being able to construct an object on a single command is quite useful. I am writing a creator function to use there, but I thought it could be something worth considering.

from lbspr.

AdrianHordyk avatar AdrianHordyk commented on August 21, 2024

This can be resolved by creating a wrapper function, eg:

LB_lengths <- function(LMids, etc) {
  Obj <- new('LB_lengths', verbose=FALSE)
  Obj@LMids <- LMids
  etc
  Obj
}

I'll consider adding to the package sometime, but as it isn't under active development it's probably easiest if you write the wrapper function in your own code

from lbspr.

iagomosqueira avatar iagomosqueira commented on August 21, 2024

Sure, no need to worry about it if the package is not being developed further. What I have is

LB_lengths <- function(...) {
  args <- list(...)
  res <- new('LB_lengths', verbose=FALSE)
  for(i in names(args))
    slot(res, i) <- args[[i]]
  return(res)
}

from lbspr.

AdrianHordyk avatar AdrianHordyk commented on August 21, 2024

Sounds good. I'll incorporate in the package at some stage when I do an update.

from lbspr.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.