Skip to content

Commit d5cced8

Browse files
committed
Fix typos in README
1 parent 66ab83b commit d5cced8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# What is `fastrerandomize`?<a id="description"></a>
1818
The `fastrerandomize` contains functions such as `randomization_test`, which offers a streamlined approach for performing randomization tests after using rerandomization in the research design.
1919

20-
We employ a [JAX backend](https://en.wikipedia.org/wiki/Google_JAX) to make exact rerandomization inference possible even for larger experiments where the number of randomizations is in the hundreds of millions or where experimentors seek to maintain balanced randomizations across thousands of features.
20+
We employ a [JAX backend](https://en.wikipedia.org/wiki/Google_JAX) to make exact rerandomization inference possible even for larger experiments where the number of randomizations is in the hundreds of millions or where experimenters seek to maintain balanced randomizations across thousands of features.
2121

2222
# Package Installation and Loading <a id="installation"></a>
2323
```
@@ -35,15 +35,15 @@ fastrerandomize::build_backend()
3535
```
3636

3737
# Tutorial<a id="tutorial"></a>
38-
Let's get started with a tutorial. We're first going to use the package for generate a pool of acceptable rerandomizations.
38+
Let's get started with a tutorial. We're first going to use the package to generate a pool of acceptable rerandomizations.
3939
```
4040
# First, specify some analysis parameters
4141
n_units <- 20; n_treated <- 10
4242
4343
# Generate covariate data
4444
X <- matrix(rnorm(n_units*5),nrow = n_units)
4545
46-
# Generate set of acceptable randomizations based randomization_accept_prob.
46+
# Generate a set of acceptable randomizations based on randomization_accept_prob.
4747
# When randomization_accept_prob = 1, all randomizations are accepted.
4848
# When randomization_accept_prob < 1, only well-balanced randomizations are accepted.
4949
# When randomization_accept_prob = 1/|Size of cand. randomization set|, 1 randomization is accepted.

0 commit comments

Comments
 (0)