MilesCranmer commited on
Commit
0e17dde
1 Parent(s): 306955e

Make README example more explicit

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -78,7 +78,7 @@ equations = pysr(X, y, niterations=5,
78
 
79
  ...# (you can use ctl-c to exit early)
80
 
81
- print(best())
82
  ```
83
 
84
  which gives:
@@ -92,7 +92,7 @@ or `best_callable` to get a function you can call.
92
  This uses a score which balances complexity and error;
93
  however, one can see the full list of equations with:
94
  ```python
95
- print(get_hof())
96
  ```
97
  This is a pandas table, with additional columns:
98
 
 
78
 
79
  ...# (you can use ctl-c to exit early)
80
 
81
+ print(best(equations))
82
  ```
83
 
84
  which gives:
 
92
  This uses a score which balances complexity and error;
93
  however, one can see the full list of equations with:
94
  ```python
95
+ print(equations)
96
  ```
97
  This is a pandas table, with additional columns:
98