@@ -4542,24 +4542,6 @@ whether imported ``Categorical`` variables are ordered.
4542
4542
a ``Categorical `` with string categories for the values that are labeled and
4543
4543
numeric categories for values with no label.
4544
4544
4545
- .. _io.other :
4546
-
4547
- Other file formats
4548
- ------------------
4549
-
4550
- pandas itself only supports IO with a limited set of file formats that map
4551
- cleanly to its tabular data model. For reading and writing other file formats
4552
- into and from pandas, we recommend these packages from the broader community.
4553
-
4554
- netCDF
4555
- ''''''
4556
-
4557
- xray _ provides data structures inspired by the pandas DataFrame for working
4558
- with multi-dimensional datasets, with a focus on the netCDF file format and
4559
- easy conversion to and from pandas.
4560
-
4561
- .. _xray : http://xray.readthedocs.org/
4562
-
4563
4545
.. _io.sas :
4564
4546
4565
4547
.. _io.sas_reader :
@@ -4584,11 +4566,11 @@ objects (``XportReader`` or ``SAS7BDATReader``) for incrementally
4584
4566
reading the file. The reader objects also have attributes that
4585
4567
contain additional information about the file and its variables.
4586
4568
4587
- Read a SAS XPORT file:
4569
+ Read a SAS7BDAT file:
4588
4570
4589
4571
.. code-block :: python
4590
4572
4591
- df = pd.read_sas(' sas_xport.xpt ' )
4573
+ df = pd.read_sas(' sas_data.sas7bdat ' )
4592
4574
4593
4575
Obtain an iterator and read an XPORT file 100,000 lines at a time:
4594
4576
@@ -4605,6 +4587,24 @@ web site.
4605
4587
4606
4588
No official documentation is available for the SAS7BDAT format.
4607
4589
4590
+ .. _io.other :
4591
+
4592
+ Other file formats
4593
+ ------------------
4594
+
4595
+ pandas itself only supports IO with a limited set of file formats that map
4596
+ cleanly to its tabular data model. For reading and writing other file formats
4597
+ into and from pandas, we recommend these packages from the broader community.
4598
+
4599
+ netCDF
4600
+ ''''''
4601
+
4602
+ xray _ provides data structures inspired by the pandas DataFrame for working
4603
+ with multi-dimensional datasets, with a focus on the netCDF file format and
4604
+ easy conversion to and from pandas.
4605
+
4606
+ .. _xray : http://xray.readthedocs.org/
4607
+
4608
4608
.. _io.perf :
4609
4609
4610
4610
Performance Considerations
0 commit comments