From 14feeb1c8dbca69a32de489e0687219285fb5814 Mon Sep 17 00:00:00 2001 From: cmp0xff Date: Wed, 24 Sep 2025 13:50:05 +0200 Subject: [PATCH] doc(data_frame): from_records --- pandas/core/frame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 110bb8d89cddd..048ff30846ec4 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -2132,12 +2132,12 @@ def from_records( """ Convert structured or record ndarray to DataFrame. - Creates a DataFrame object from a structured ndarray, or sequence of + Creates a DataFrame object from a structured ndarray, or iterable of tuples or dicts. Parameters ---------- - data : structured ndarray, sequence of tuples or dicts + data : structured ndarray, iterable of tuples or dicts Structured input data. index : str, list of fields, array-like Field of array to use as the index, alternately a specific set of