Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e46c85f
Update format.py
Feb 24, 2022
0a51d25
Update test_format.py
Feb 24, 2022
c6bf639
pre commit
Feb 24, 2022
f857db8
Update test_format.py
Feb 24, 2022
2be9fd2
incompatible types in assignment
Feb 25, 2022
c368578
Merge branch 'bug_ExtensionArray_with_2D_datetime64' of https://githu…
Feb 25, 2022
d286682
add
Feb 26, 2022
6eea976
Update astype.py
Feb 26, 2022
3875560
Incompatible return value type
Feb 26, 2022
00a7e7e
change to list(fmt_values)
Feb 27, 2022
065001f
add
Mar 3, 2022
654b01a
add
Mar 3, 2022
55f4908
add
Mar 5, 2022
fed0694
Update test_format.py
Mar 5, 2022
a77eb63
add ndim condition
Mar 5, 2022
5c6370e
Merge branch 'main' into bug_ExtensionArray_with_2D_datetime64
Mar 5, 2022
54e1316
2d case
Mar 5, 2022
e24e05d
Merge branch 'bug_ExtensionArray_with_2D_datetime64' of https://githu…
Mar 5, 2022
7fed730
change numpy type
Mar 5, 2022
75e6228
Merge branch 'main' into bug_ExtensionArray_with_2D_datetime64
Mar 6, 2022
a8c3b46
Merge branch 'main' into bug_ExtensionArray_with_2D_datetime64
Mar 8, 2022
dee7364
tidy
Mar 8, 2022
3d7556b
Merge branch 'main' into bug_ExtensionArray_with_2D_datetime64
Mar 9, 2022
8100431
Merge branch 'main' into bug_ExtensionArray_with_2D_datetime64
Mar 9, 2022
95b423d
nested format
Mar 10, 2022
7451562
expression and variable
Mar 10, 2022
f71e11f
Update format.py
Mar 10, 2022
d927e42
Merge branch 'main' into bug_ExtensionArray_with_2D_datetime64
Mar 15, 2022
7e5739b
Merge branch 'main' into bug_ExtensionArray_with_2D_datetime64
Mar 16, 2022
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add
  • Loading branch information
chean.wei.khor authored and chean.wei.khor committed Mar 5, 2022
commit 55f49080ba29fc7436228c1c036d3abc4909fd8d
4 changes: 2 additions & 2 deletions pandas/io/formats/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -1628,13 +1628,13 @@ def _format_strings(self) -> list[str]:
values = DatetimeIndex(values)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, so there is a deeper bug here in that DatetimeIndex(values) isn't raising when passed a 2D array.


if self.formatter is not None and callable(self.formatter):
fmt_values = np.frompyfunc(self.formatter, 1, 1)(values)
fmt_values = [self.formatter(x) for x in values]
else:
fmt_values = values._data._format_native_types(
na_rep=self.nat_rep, date_format=self.date_format
)

nested_formatter = GenericArrayFormatter(fmt_values)
nested_formatter = GenericArrayFormatter(np.array(fmt_values))
fmt_values = nested_formatter.get_result()
return list(fmt_values)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is anything necessary between L1630-L1640? we know we have DatetimeIndex which is 1D.


Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/io/formats/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -3182,7 +3182,7 @@ def test_datetime64formatter_3d_array(self):
assert result[0].strip() == "[[2018-01-01 00:00:00]]"
assert result[9].strip() == "[[2018-01-01 09:00:00]]"

def test_datetime64formatter_2d_array_format_func(self):
def test_datetime64formatter_3d_array_format_func(self):
x = date_range("2018-01-01", periods=24, freq="H").to_numpy()

def format_func(t):
Expand Down