bigframes.pandas.Series.to_latex#
- Series.to_latex(buf=None, columns=None, header=True, index=True, *, allow_large_results=None, **kwargs) str | None[source]#
Render object to a LaTeX tabular, longtable, or nested table.
- Parameters:
buf (str, Path or StringIO-like, optional, default None) – Buffer to write to. If None, the output is returned as a string.
columns (list of label, optional) – The subset of columns to write. Writes all columns by default.
header (bool or list of str, default True) – Write out the column names. If a list of strings is given, it is assumed to be aliases for the column names.
index (bool, default True) – Write row names (index).
allow_large_results (bool, default None) – If not None, overrides the global setting to allow or disallow large query results over the default size limit of 10 GB.
- Returns:
If buf is None, returns the result as a string. Otherwise returns None.
- Return type:
str or None