Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/sde.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use pharmsol::{prelude::data::read_pmetrics, *};
use pharmsol::*;

fn one_c_ode() -> ODE {
equation::ODE::new(
Expand Down Expand Up @@ -161,7 +161,7 @@ fn main() {
let ode = three_c_ode();
let sde = three_c_sde();

let data = read_pmetrics("../PMcore/examples/vanco_sde/data.csv").unwrap();
let data = Data::read_pmetrics("../PMcore/examples/vanco_sde/data.csv").unwrap();
let subject = data.get_subject("51").unwrap();

let ode_predictions = ode.estimate_predictions(subject, &spp_ode);
Expand Down
2 changes: 1 addition & 1 deletion src/data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub mod builder;
pub mod covariate;
pub mod error_model;
pub mod event;
pub(crate) mod parse_pmetrics;
pub mod parser;
pub mod structs;
pub use covariate::*;
pub use error_model::*;
Expand Down
Loading
Loading