Skip to content
Open
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
4 changes: 4 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
^renv$
^renv\.lock$
^.*\.Rproj$
^\.Rproj\.user$
^\.travis\.yml$
^\.positai$
^\.claude$
1 change: 1 addition & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source("renv/activate.R")
24 changes: 24 additions & 0 deletions .github/workflows/test-coverage.yml
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 }}
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
10 changes: 7 additions & 3 deletions DESCRIPTION
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
4 changes: 3 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import(jaspBase)
export(BayesFactorDesign)
export(BayesFactorSequentialDesign)
export(Power)

export(GroupSequentialDesign)
31 changes: 6 additions & 25 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,15 @@

---

# jaspPower (development version)

---


# jaspModuleTemplate 0.96.6
# jaspPower 0.97
## Added
* Fixed a bug in the power demonstration graph of the one sample z-test. Now n correctly determines the precision (width) of the distributions, making the visual consistent with the numerical result.

* Group Sequential Design
* Bayes Factor Design
* Bayes Factor Sequential Design

---

# jaspModuleTemplate 0.2.0
## Added
* Added NEWS.md
* Added workflow to remind users to update their `NEWS.md`.
* Added workflow to auto-bump version when user does not do so.

---

# jaspModuleTemplate 0.1.0

# jaspPower 0.96.6
## Added
* Initial examples to showcase JASP module development

## Changed
* Use best practices for checking input ([Issue #19](https://github.com/jasp-stats/jaspModuleTemplate/issues/19)).
* The main results table now defaults to displaying 95% Confidence Intervals for effect sizes.

## Fixed
* Remove deprecated dependencies from qml files ([Issue #14](https://github.com/jasp-stats/jaspModuleTemplate/issues/14)).
* Fixed a bug in the power demonstration graph of the one sample z-test. Now n correctly determines the precision (width) of the distributions, making the visual consistent with the numerical result.
Loading
Loading