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

canonize docs #181

Merged
merged 1 commit into from
Oct 18, 2022
Merged
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
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# DiffEqParamEstim.jl

[![Join the chat at https://julialang.zulipchat.com #sciml-bridged](https://img.shields.io/static/v1?label=Zulip&message=chat&color=9558b2&labelColor=389826)](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](http://diffeqparamestim.sciml.ai/stable/)
[![Global Docs](https://img.shields.io/badge/docs-SciML-blue.svg)](https://docs.sciml.ai/dev/modules/DiffEqParamEstim/)
[![Global Docs](https://img.shields.io/badge/docs-SciML-blue.svg)](https://docs.sciml.ai/ParameterizedFunctions/stable/)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh oops, this looks wrong


[![codecov](https://codecov.io/gh/SciML/DiffEqParamEstim.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/SciML/DiffEqParamEstim.jl)
[![Build Status](https://github.com/SciML/DiffEqParamEstim.jl/workflows/CI/badge.svg)](https://github.com/SciML/DiffEqParamEstim.jl/actions?query=workflow%3ACI)
Expand All @@ -18,6 +17,6 @@ functionality should check out [DifferentialEquations.jl](https://github.com/Sci
## Tutorials and Documentation

For information on using the package,
[see the stable documentation](https://diffeqparamestim.sciml.ai/stable/). Use the
[in-development documentation](https://diffeqparamestim.sciml.ai/dev/) for the version of
[see the stable documentation](https://docs.sciml.ai/ParameterizedFunctions/stable/). Use the
[in-development documentation](https://docs.sciml.ai/ParameterizedFunctions/dev/) for the version of
the documentation, which contains the unreleased features.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ makedocs(sitename = "DiffEqParamEstim.jl",
doctest = false,
modules = [DiffEqParamEstim],
format = Documenter.HTML(assets = ["assets/favicon.ico"],
canonical = "https://diffeqparamestim.sciml.ai/stable/"),
canonical = "https://docs.sciml.ai/DiffEqParamEstim/stable/"),
pages = pages)

deploydocs(repo = "github.com/SciML/DiffEqParamEstim.jl";
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/ODE_inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ randomized = VectorOfArray([(sol(t[i]) + .01randn(2)) for i in 1:length(t)])
data = convert(Array,randomized)
```

Here we used `VectorOfArray` from [RecursiveArrayTools.jl](https://github.com/ChrisRackauckas/RecursiveArrayTools.jl)
Here we used `VectorOfArray` from [RecursiveArrayTools.jl](https://docs.sciml.ai/RecursiveArrayTools/stable/)
to turn the result of an ODE into a matrix.

If we plot the solution with the parameter at `a=1.42`, we get the following:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/jump.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Using JuMP with DiffEqParamEstim

[JuMP](https://github.com/JuliaOpt/JuMP.jl) is a domain-specific modeling language
[JuMP](https://jump.dev/) is a domain-specific modeling language
for mathematical optimization embedded in Julia.

```julia
Expand Down