Skip to content

Commit

Permalink
mention blocks are experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
EvoArt committed Oct 25, 2021
1 parent 9346819 commit 39d3ab8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ y = rand(100,5)

preds = [[rand(["a","b","c","d"]) for i in 1:100] for j in 1:3]
df = DataFrame(preds,[:X,:Y,:Z])
permanova(df,y,BrayCurtis,@formula(1~X+Y), blocks = @formula(block ~ Z))
permanova(df,y,BrayCurtis,@formula(1~X+Y))
```

## TODO
* Pairwise PERMANOVA
* Pairwise PERMANOVA

## Experimental
* `blocks` (strata) e.g. `permanova(df,y,BrayCurtis,@formula(1~X+Y), blocks = @formula(block ~ Z))`

2 comments on commit 39d3ab8

@EvoArt
Copy link
Owner Author

@EvoArt EvoArt commented on 39d3ab8 Oct 25, 2021

Choose a reason for hiding this comment

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

@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/47461

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.1.0 -m "<description of version>" 39d3ab83adf7a44d40fb82f252e900925e642e3a
git push origin v0.1.0

Please sign in to comment.