Skip to content

Commit

Permalink
Merge branch 'main' into lrnv/issue98
Browse files Browse the repository at this point in the history
  • Loading branch information
lrnv authored Feb 20, 2024
2 parents 6fb7855 + c6976cf commit c078cd4
Show file tree
Hide file tree
Showing 31 changed files with 1,193 additions and 215 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
if: >-
!contains(github.event.head_commit.message, '[skip docs]')
&& github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ D = SklarDist(C,(X₁,X₂,X₃)) # The final distribution
simu = rand(D,1000) # Generate a dataset

# You may estimate a copula using the `fit` function:
= fit(SklarDist{FrankCopula,Tuple{Gamma,Normal,LogNormal}}, simu)
# Increase the number of observations to get a beter fit (or not?)
= fit(SklarDist{ClaytonCopula,Tuple{Gamma,Normal,LogNormal}}, simu)
```

The list of availiable copula models is *very* large, check it out on our [documentation](https://lrnv.github.io/Copulas.jl/stable) !
Expand All @@ -72,7 +71,7 @@ There are competing packages in Julia, such as [`BivariateCopulas.jl`](https://g
| | `Copulas.jl` | `DatagenCopulaBased.jl` | `BivariateCopulas.jl` |
|----------------|--------------|-------------------------|-----------------------|
| `Distributions.jl`'s API | ✔️ || ✔️ |
| Fitting | ✔️ | ✔️ ||
| Fitting | ✔️ | ||
| Plotting ||| ✔️ |
| Available copulas | | | |
| - Classic Bivariate | ✔️ | ✔️ | ✔️ |
Expand Down
Loading

0 comments on commit c078cd4

Please sign in to comment.