Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat committed Feb 20, 2021
1 parent cd96b91 commit 61a7425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/instanduse.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Load provided data with CSV and DataFrames:

```@example lmmexample
using Metida, CSV, DataFrames
df = CSV.File(joinpath(dirname(pathof(Metida)), "..", "test", "csv", "df0.csv")) |> DataFrame;
df = CSV.File(joinpath(dirname(pathof(Metida)), "..", "test", "csv", "df0.csv")) |> DataFrame; nothing # hide
```

!!! note
Expand All @@ -29,7 +29,7 @@ df = CSV.File(joinpath(dirname(pathof(Metida)), "..", "test", "csv", "df0.csv"))
categorical!(df, :subject);
categorical!(df, :period);
categorical!(df, :sequence);
categorical!(df, :formulation);
categorical!(df, :formulation); nothing # hide
```

#### Step 2: Make model
Expand Down

2 comments on commit 61a7425

@PharmCat
Copy link
Owner

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

v0.5.0

  • data views structure
  • api changes

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/30494

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 61a74258cec3fd13eefe76c4a52a1043003e3b49
git push origin v0.5.0

Please sign in to comment.