Skip to content

Version 11.0.123

Compare
Choose a tag to compare
@Yuri05 Yuri05 released this 20 May 13:45
· 219 commits to main since this release
cf12170

Installation

Documentation

https://www.open-systems-pharmacology.org/OSPSuite-R/

New features

  • Adds new DataCombined class that combines observed data (DataSet) and
    simulated data (SimulationResults) into a single object. Especially
    important is the $toDataFrame() method of this object that returns a data
    frame containing combined data from observed and simulated data, which can be
    further used for visualizations or other analysis.

  • Adds new visualization functions:

    • plotIndividualTimeProfile() and plotPopulationTimeProfile() to create
      time-profile plots.
  • Adds a new class DefaultPlotConfiguration to provide plot configurations for
    plotting functions.

  • Adds simulationResultsToDataFrame() function to convert SimulationResults
    objects into a data frame.

  • All *ToDataFrame() functions also get *ToTibble() variants to extract a
    tibble data frame instead of a classical data frame.

Major Changes

  • Following functions are marked for deprecation and will be removed in future
    releases:

    • pkAnalysesAsDataFrame() is now pkAnalysesToDataFrame()

    • populationAsDataFrame() is now populationToDataFrame()

Breaking changes

  • Signature for toUnit function has changed. molWeight is now the fifth,
    while sourceUnit is the fourth parameter (#837).

  • DataImporterConfiguration: fields timeUnitFromColumn and
    measurementUnitFromColumn are renamed to isTimeUnitFromColumn and
    isMeasurementUnitFromColumn

  • The constructor for DataImporterConfiguration does not accept a path to a
    configuration file any more. Use the function
    loadDataImporterConfiguration() to create a configuration object from a
    file.

  • The constructor for DataSet objects requires a name argument.

  • All validate*() helper functions and "%||%" infix operators are no longer
    exported. Please have a look at the new utility package, from which these
    functions are now exported:
    https://www.open-systems-pharmacology.org/OSPSuite.RUtils/.

  • The pkAnalysesAsDataFrame() function changes column data types for
    QuantityPath, Parameter, and Unit from factor to character
    (#673).