MilesCranmer commited on
Commit
1e3fd5e
1 Parent(s): 301cedc

Include docs on LaTeX table

Browse files
Files changed (1) hide show
  1. docs/options.md +1 -0
docs/options.md CHANGED
@@ -186,6 +186,7 @@ if you called `.fit` on a pandas dataframe as well.
186
  There are also some helper functions for doing this quickly.
187
 
188
  - `model.latex()` will generate a TeX formatted output of your equation.
 
189
  - `model.sympy()` will return the SymPy representation.
190
  - `model.jax()` will return a callable JAX function combined with parameters (see below)
191
  - `model.pytorch()` will return a PyTorch model (see below).
 
186
  There are also some helper functions for doing this quickly.
187
 
188
  - `model.latex()` will generate a TeX formatted output of your equation.
189
+ - `model.latex_table(indices=[2, 5, 8])` will generate a formatted LaTeX table including all the specified equations.
190
  - `model.sympy()` will return the SymPy representation.
191
  - `model.jax()` will return a callable JAX function combined with parameters (see below)
192
  - `model.pytorch()` will return a PyTorch model (see below).