File tree 2 files changed +188
-8
lines changed
2 files changed +188
-8
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ Conversion / Constructors
235
235
.. autosummary ::
236
236
:toctree: generated/
237
237
238
- Series.__init__
238
+ Series
239
239
Series.astype
240
240
Series.copy
241
241
@@ -430,7 +430,7 @@ Conversion / Constructors
430
430
.. autosummary ::
431
431
:toctree: generated/
432
432
433
- DataFrame.__init__
433
+ DataFrame
434
434
DataFrame.astype
435
435
DataFrame.convert_objects
436
436
DataFrame.copy
@@ -657,7 +657,7 @@ Conversion / Constructors
657
657
.. autosummary ::
658
658
:toctree: generated/
659
659
660
- Panel.__init__
660
+ Panel
661
661
Panel.astype
662
662
Panel.copy
663
663
@@ -793,3 +793,183 @@ Serialization / IO / Conversion
793
793
Panel.to_frame
794
794
Panel.to_clipboard
795
795
796
+
797
+ .. HACK -- the point here is that we don't want this to appear in the output, but the autosummary should still generate the pages.
798
+ .. autosummary::
799
+ :toctree: generated/
800
+
801
+ DataFrame.all
802
+ DataFrame.as_blocks
803
+ DataFrame.at_time
804
+ DataFrame.between_time
805
+ DataFrame.bfill
806
+ DataFrame.consolidate
807
+ DataFrame.divide
808
+ DataFrame.dot
809
+ DataFrame.eq
810
+ DataFrame.ffill
811
+ DataFrame.ge
812
+ DataFrame.get
813
+ DataFrame.get_ftype_counts
814
+ DataFrame.get_value
815
+ DataFrame.get_values
816
+ DataFrame.gt
817
+ DataFrame.icol
818
+ DataFrame.iget_value
819
+ DataFrame.interpolate
820
+ DataFrame.irow
821
+ DataFrame.iterkv
822
+ DataFrame.keys
823
+ DataFrame.le
824
+ DataFrame.load
825
+ DataFrame.lt
826
+ DataFrame.mask
827
+ DataFrame.mod
828
+ DataFrame.ne
829
+ DataFrame.pivot_table
830
+ DataFrame.pow
831
+ DataFrame.product
832
+ DataFrame.rename_axis
833
+ DataFrame.rmod
834
+ DataFrame.rpow
835
+ DataFrame.save
836
+ DataFrame.set_value
837
+ DataFrame.squeeze
838
+ DataFrame.swapaxes
839
+ DataFrame.to_dense
840
+ DataFrame.to_latex
841
+ DataFrame.to_sql
842
+ DataFrame.to_wide
843
+ DataFrame.tshift
844
+ DataFrame.where
845
+
846
+ DataFrame.at
847
+ DataFrame.blocks
848
+ DataFrame.empty
849
+ DataFrame.ftypes
850
+ DataFrame.iat
851
+ DataFrame.iloc
852
+ DataFrame.loc
853
+
854
+ Series.add_prefix
855
+ Series.add_suffix
856
+ Series.all
857
+ Series.argmax
858
+ Series.argmin
859
+ Series.as_blocks
860
+ Series.as_matrix
861
+ Series.at_time
862
+ Series.between_time
863
+ Series.bfill
864
+ Series.consolidate
865
+ Series.convert_objects
866
+ Series.dot
867
+ Series.drop_duplicates
868
+ Series.duplicated
869
+ Series.ffill
870
+ Series.filter
871
+ Series.from_array
872
+ Series.get_dtype_counts
873
+ Series.get_ftype_counts
874
+ Series.get_value
875
+ Series.get_values
876
+ Series.iget
877
+ Series.iget_value
878
+ Series.irow
879
+ Series.item
880
+ Series.iterkv
881
+ Series.keys
882
+ Series.load
883
+ Series.mask
884
+ Series.mod
885
+ Series.nonzero
886
+ Series.pop
887
+ Series.ptp
888
+ Series.put
889
+ Series.ravel
890
+ Series.reindex_axis
891
+ Series.rename_axis
892
+ Series.repeat
893
+ Series.reshape
894
+ Series.save
895
+ Series.set_value
896
+ Series.squeeze
897
+ Series.swapaxes
898
+ Series.to_dense
899
+ Series.to_hdf
900
+ Series.to_json
901
+ Series.to_period
902
+ Series.to_timestamp
903
+ Series.tolist
904
+ Series.transpose
905
+ Series.tshift
906
+ Series.valid
907
+ Series.view
908
+ Series.where
909
+ Series.xs
910
+
911
+ Series.T
912
+ Series.at
913
+ Series.axes
914
+ Series.base
915
+ Series.blocks
916
+ Series.data
917
+ Series.empty
918
+ Series.flags
919
+ Series.ftype
920
+ Series.iat
921
+ Series.iloc
922
+ Series.is_time_series
923
+ Series.loc
924
+ Series.ndim
925
+ Series.shape
926
+ Series.size
927
+ Series.strides
928
+
929
+ Panel.align
930
+ Panel.as_blocks
931
+ Panel.as_matrix
932
+ Panel.at_time
933
+ Panel.between_time
934
+ Panel.bfill
935
+ Panel.compound
936
+ Panel.consolidate
937
+ Panel.convert_objects
938
+ Panel.divide
939
+ Panel.eq
940
+ Panel.ffill
941
+ Panel.fromDict
942
+ Panel.ge
943
+ Panel.get
944
+ Panel.get_dtype_counts
945
+ Panel.get_ftype_counts
946
+ Panel.get_values
947
+ Panel.gt
948
+ Panel.interpolate
949
+ Panel.iterkv
950
+ Panel.keys
951
+ Panel.le
952
+ Panel.load
953
+ Panel.lt
954
+ Panel.mask
955
+ Panel.multiply
956
+ Panel.ne
957
+ Panel.rename_axis
958
+ Panel.replace
959
+ Panel.save
960
+ Panel.squeeze
961
+ Panel.subtract
962
+ Panel.toLong
963
+ Panel.to_dense
964
+ Panel.to_hdf
965
+ Panel.to_json
966
+ Panel.to_long
967
+ Panel.tshift
968
+ Panel.where
969
+
970
+ Panel.at
971
+ Panel.blocks
972
+ Panel.empty
973
+ Panel.iat
974
+ Panel.iloc
975
+ Panel.loc
Original file line number Diff line number Diff line change @@ -319,12 +319,12 @@ Dealing with Unicode Data
319
319
The ``encoding `` argument should be used for encoded unicode data, which will
320
320
result in byte strings being decoded to unicode in the result:
321
321
322
- .. ipython :: python
322
+ .. .. ipython:: python
323
323
324
- data = ' word,length\n Tr\xe4 umen,7\n Gr\xfc\xdf e,5'
325
- df = pd.read_csv(StringIO(data), encoding = ' latin-1' )
326
- df
327
- df[' word' ][1 ]
324
+ data = 'word,length\nTr\xe4umen,7\nGr\xfc\xdfe,5'
325
+ df = pd.read_csv(StringIO(data), encoding='latin-1')
326
+ df
327
+ df['word'][1]
328
328
329
329
Some formats which encode all characters as multiple bytes, like UTF-16, won't
330
330
parse correctly at all without specifying the encoding.
You can’t perform that action at this time.
0 commit comments