From 54a19c7a45a09129639d493753390db2e3d41193 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sun, 1 Sep 2013 10:58:49 +0200 Subject: [PATCH] DOC: small clarification in DataFrame docstring --- pandas/core/frame.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index c7ff4c052638d..5d8cc0b9d8de0 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -351,7 +351,8 @@ class DataFrame(NDFrame): Index to use for resulting frame. Will default to np.arange(n) if no indexing information part of input data and no index provided columns : Index or array-like - Will default to np.arange(n) if not column labels provided + Column labels to use for resulting frame. Will default to + np.arange(n) if no column labels are provided dtype : dtype, default None Data type to force, otherwise infer copy : boolean, default False