File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 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``.
533533Byte-Ordering Issues
534534--------------------
535535Occasionally 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
537545with this issue you should convert the underlying NumPy array to the native
538546system byte order *before * passing it to Series/DataFrame/Panel constructors
539547using something similar to the following:
You can’t perform that action at this time.
0 commit comments