コード例 #1
0
ファイル: test_pickle.py プロジェクト: Michael-E-Rose/pandas
def test_pickle_path_localpath():
    df = tm.makeDataFrame()
    result = tm.round_trip_localpath(df.to_pickle, pd.read_pickle)
    tm.assert_frame_equal(df, result)
コード例 #2
0
ファイル: test_packers.py プロジェクト: chrish42/pandas
 def test_path_localpath(self):
     df = tm.makeDataFrame()
     result = tm.round_trip_localpath(df.to_msgpack, read_msgpack)
     tm.assert_frame_equal(df, result)
コード例 #3
0
ファイル: test_feather.py プロジェクト: TomAugspurger/pandas
 def test_path_localpath(self):
     df = tm.makeDataFrame().reset_index()
     result = tm.round_trip_localpath(df.to_feather, pd.read_feather)
     tm.assert_frame_equal(df, result)
コード例 #4
0
ファイル: test_packers.py プロジェクト: PaulGureghian1/Pandas
 def test_path_localpath(self):
     df = tm.makeDataFrame()
     result = tm.round_trip_localpath(df.to_msgpack, read_msgpack)
     tm.assert_frame_equal(df, result)
コード例 #5
0
ファイル: test_pickle.py プロジェクト: Goutham2591/OMK_PART2
def test_pickle_path_localpath():
    df = tm.makeDataFrame()
    result = tm.round_trip_localpath(df.to_pickle, pd.read_pickle)
    tm.assert_frame_equal(df, result)
コード例 #6
0
 def test_path_localpath(self):
     df = tm.makeDataFrame().reset_index()
     result = tm.round_trip_localpath(df.to_feather, pd.read_feather)
     tm.assert_frame_equal(df, result)