-
Notifications
You must be signed in to change notification settings - Fork 15
Add Group Sequential Design and Bayes Factor (Sequential) Design #87
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
Open
FBartos
wants to merge
24
commits into
master
Choose a base branch
from
pr86-reapply
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7658cb8
agent instructions
FBartos 905fe9b
Add Evidence analysis interface
FBartos 16fa6a8
Implement Evidence analysis and UI
FBartos 9a5d92c
update
FBartos c596a20
feat: update bpower designs
codex 7841c99
fix naming
FBartos 70b2d9f
improve org
FBartos 06ebf08
update GUI
FBartos 72a666b
update instructions
FBartos d551675
update module
FBartos 3f81daf
update results
FBartos bac87ea
update results
FBartos f389ac6
update + tests
FBartos a5d9e85
update notes
FBartos 3455dcd
update Bayes
FBartos f7ead24
add references
FBartos 8f51de4
update frequentist GSD
FBartos 3febd2d
Merge remote-tracking branch 'origin/bpower' into resolve/pr86-on-master
FBartos 5dc0587
add news and readme
FBartos 77eb191
Create test-coverage.yml
FBartos 24c383b
update deps
FBartos ad06170
Potential fix for pull request finding 'CodeQL / Workflow does not co…
FBartos ce63fa1
update calculations
FBartos 9101d09
cleanup
FBartos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| ^renv$ | ||
| ^renv\.lock$ | ||
| ^.*\.Rproj$ | ||
| ^\.Rproj\.user$ | ||
| ^\.travis\.yml$ | ||
| ^\.positai$ | ||
| ^\.claude$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| source("renv/activate.R") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| on: | ||
| push: | ||
| branches: | ||
| - master # Essential for Codecov baseline | ||
| paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win', '**.yml'] | ||
|
|
||
| pull_request: | ||
| # Triggers when a PR is opened, updated, or marked ready for review | ||
| types: [opened, synchronize, reopened, ready_for_review] | ||
| paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win'] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| coverage: | ||
| # Run if it is a push (merge) OR if the PR is NOT a draft | ||
| if: github.event_name == 'push' || github.event.pull_request.draft == false | ||
|
|
||
| uses: jasp-stats/jasp-actions/.github/workflows/coverage.yml@master | ||
| with: | ||
| needs_JAGS: false | ||
| secrets: | ||
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,23 @@ | ||
| Package: jaspPower | ||
| Type: Package | ||
| Title: Power Module for JASP | ||
| Version: 0.96.6 | ||
| Version: 0.97.0 | ||
| Date: 2021-09-28 | ||
| Author: JASP Team | ||
| Website: jasp-stats.org | ||
| Maintainer: JASP Team <info@jasp-stats.org> | ||
| Description: This module offers analyses. | ||
| License: GPL (>= 2) | ||
| License: GPL (>= 3) | ||
| Encoding: UTF-8 | ||
| Imports: | ||
| bfpwr (>= 0.3), | ||
| ggplot2, | ||
| gsDesign, | ||
| pwr, | ||
| viridis, | ||
| jaspBase, | ||
| jaspGraphs | ||
| Remotes: | ||
| jasp-stats/jaspBase, | ||
| jasp-stats/jaspGraphs | ||
| jasp-stats/jaspGraphs, | ||
| SamCH93/bfpwr/package@74508cdeae9deae60e916228e27f309c034f3307 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| import(jaspBase) | ||
| export(BayesFactorDesign) | ||
| export(BayesFactorSequentialDesign) | ||
| export(Power) | ||
|
|
||
| export(GroupSequentialDesign) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.