diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-14 20:44:46 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-14 20:44:46 +0200 |
commit | 34ace6b447062a492e526e5480562f495f096310 (patch) | |
tree | b58d841c220c8b772ee1e4de17f3ca9b7ef6cd6d | |
parent | e21653f89e78320f0d217a4d51c20d511f20d2a3 (diff) |
Small improvements to usage examples
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -44,8 +44,8 @@ A very simple usage example would be ) SFO <- mkinmod(parent = list(type = "SFO")) SFO.fit <- mkinfit(SFO, example_data) + plot(SFO.fit, show_residuals = TRUE) summary(SFO.fit) - plot(SFO.fit) A fairly complex usage example using a built-in dataset: @@ -61,7 +61,8 @@ A fairly complex usage example using a built-in dataset: fit <- mkinfit(model, data, method.modFit = "Port") plot(fit, show_residuals = TRUE) - s <- summary(fit) + summary(fit) + mkinparplot(fit) For more examples and to see results, have a look at the examples provided in the [`mkinfit`](http://kinfit.r-forge.r-project.org/mkin_static/mkinfit.html) |