Skip to content

Commit 483cf70

Browse files
committed
Merge branch 'develop'
2 parents c6a6083 + 007ab8a commit 483cf70

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

CRAN-SUBMISSION

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Version: 1.2.11
2-
Date: 2023-03-22 19:58:11 UTC
3-
SHA: ebd5258c187e9b08ce60238e50168d25c2b5e910
1+
Version: 1.2.12
2+
Date: 2023-09-29 12:32:54 UTC
3+
SHA: 3564186c5c9464a9107af82d962456848a8e9dd1

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: bayes4psy
2-
Version: 1.2.11
2+
Version: 1.2.12
33
Title: User Friendly Bayesian Data Analysis for Psychology
44
Description: Contains several Bayesian models for data analysis of psychological tests. A user friendly interface for these models should enable students and researchers to perform professional level Bayesian data analysis without advanced knowledge in programming and Bayesian statistics. This package is based on the Stan platform (Carpenter et el. 2017 <doi:10.18637/jss.v076.i01>).
55
Authors@R:

inst/stan/color.stan

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
data {
22
int<lower=0> n; // number of data entries
33
// rgb
4-
array[n] real<lower=0,upper=255> r;
5-
array[n] real<lower=0,upper=255> g;
6-
array[n] real<lower=0,upper=255> b;
4+
vector<lower=0,upper=255>[n] r;
5+
vector<lower=0,upper=255>[n] g;
6+
vector<lower=0,upper=255>[n] b;
77
// hsv
8-
array[n] real<lower=0,upper=2*pi()> h;
9-
array[n] real<lower=0,upper=1> s;
10-
array[n] real<lower=0,upper=1> v;
8+
vector<lower=0,upper=2*pi()>[n] h;
9+
vector<lower=0,upper=1>[n] s;
10+
vector<lower=0,upper=1>[n] v;
1111

1212
// priors
1313
array[12] int<lower=0> p_ids;
14-
array[24] real p_values;
14+
vector[24] p_values;
1515
}
1616

1717
parameters {

inst/stan/linear.stan

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ data {
77

88
// priors
99
array[6] int<lower=0> p_ids;
10-
array[12] real p_values;
10+
vector[12] p_values;
1111
}
1212

1313
parameters {

inst/stan/reaction_time.stan

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ data {
66

77
// priors
88
array[6] int p_ids;
9-
array[12] real p_values;
9+
vector[12] p_values;
1010
}
1111

1212
parameters {

inst/stan/ttest.stan

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
data {
22
int<lower=0> n; // number of samples
3-
array[n] real y;
3+
vector[n] y;
44

55
// priors
66
array[3] int<lower=0> p_ids;
7-
array[6] real p_values;
7+
vector[6] p_values;
88
}
99

1010
parameters {

0 commit comments

Comments
 (0)