Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed image to code block #48

Merged
merged 1 commit into from
Oct 24, 2023
Merged
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
24 changes: 20 additions & 4 deletions docs/models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,26 @@ testing purposes. Here is an example of how you can test the model: ::
model = ChildModel(data=test_data)
print(model)

If you now run the file, you should have a standard output in your console that looks like:

.. image:: _static/models/standard_out1.jpeg
:scale: 100%
If you now run the file, you should have a standard output in your console that looks like: ::

Selected model: Tutorial model
Model data:
time experiments X Glucose
0 0 A 0.5 12.0
1 1 A 0.8 11.6
2 2 A 1.2 11.0
3 3 A 1.8 10.2
Experimental matrix:
[['A' 0.5 12.0]
['A' 0.8 11.6]
['A' 1.2 11.0]
['A' 1.8 10.2]]
Time vector: [0 1 2 3]
Name vector: ['X', 'Glucose']
Biomass & Metabolites: ['Glucose']
Parameters to estimate: None
Fixed parameters: None
Bounds: None

The next step is to define the parameters (used for simulationsand optimization). PhysioFit supports two types of parameters (**parameters to estimate** and **fixed parameters**) which are detailed below.

Expand Down