File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -533,7 +533,15 @@ parse HTML tables in the top-level pandas io function ``read_html``.
533
533
Byte-Ordering Issues
534
534
--------------------
535
535
Occasionally you may have to deal with data that were created on a machine with
536
- a different byte order than the one on which you are running Python. To deal
536
+ a different byte order than the one on which you are running Python. A common symptom of this issue is an error like
537
+
538
+ .. code-block :: python
539
+
540
+ Traceback
541
+ ...
542
+ ValueError : Big- endian buffer not supported on little- endian compiler
543
+
544
+ To deal
537
545
with this issue you should convert the underlying NumPy array to the native
538
546
system byte order *before * passing it to Series/DataFrame/Panel constructors
539
547
using something similar to the following:
You can’t perform that action at this time.
0 commit comments