From d8a90ce71f732732b2b98f436b1dd95fe5720553 Mon Sep 17 00:00:00 2001 From: Future Programmer <86537525+futureprogrammer360@users.noreply.github.com> Date: Thu, 23 Feb 2023 14:28:00 -0800 Subject: [PATCH] Add orient=table explanation to read_json doc --- pandas/io/json/_json.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/io/json/_json.py b/pandas/io/json/_json.py index 335d510666a1f..80d2f9eda7ce5 100644 --- a/pandas/io/json/_json.py +++ b/pandas/io/json/_json.py @@ -540,6 +540,7 @@ def read_json( - ``'index'`` : dict like ``{{index -> {{column -> value}}}}`` - ``'columns'`` : dict like ``{{column -> {{index -> value}}}}`` - ``'values'`` : just the values array + - ``'table'`` : dict like ``{{'schema': {{schema}}, 'data': {{data}}}}`` The allowed and default values depend on the value of the `typ` parameter.