當前位置: 首頁>>代碼示例>>Python>>正文


Python castra.Castra類代碼示例

本文整理匯總了Python中castra.Castra的典型用法代碼示例。如果您正苦於以下問題:Python Castra類的具體用法?Python Castra怎麽用?Python Castra使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Castra類的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_get_empty_result

def test_get_empty_result(base):
    c = Castra(path=base, template=A)
    c.extend(A)

    df = c[100:200]

    assert (df.columns == A.columns).all()
開發者ID:CaptainAL,項目名稱:Spyder,代碼行數:7,代碼來源:test_core.py

示例2: execute

def execute(file_name):
    categories = ['distinguished', 'removal_reason']
    f = load(file_name)
    batches = partition_all(200000, f)
    df, frames = peek(map(to_df, batches))
    castra = Castra('./subreddit_dumps/'+file_name+'.castra',
                    template = df, categories = categories)
    castra.extend_sequence(frames, freq = '3h')
開發者ID:JherezTaylor,項目名稱:Datamining-Reddit,代碼行數:8,代碼來源:make_subreddit_castra.py

示例3: test_pickle_Castra

def test_pickle_Castra():
    path = tempfile.mkdtemp(prefix='castra-')
    c = Castra(path=path, template=A)
    c.extend(A)
    c.extend(B)

    dumped = pickle.dumps(c)
    undumped = pickle.loads(dumped)

    tm.assert_frame_equal(pd.concat([A, B]), undumped[:])
開發者ID:sdvillal,項目名稱:castra,代碼行數:10,代碼來源:test_core.py

示例4: from_castra

def from_castra(x, columns=None):
    """Load a dask DataFrame from a Castra.

    Parameters
    ----------
    x : filename or Castra
    columns: list or string, optional
        The columns to load. Default is all columns.
    """
    from castra import Castra
    if not isinstance(x, Castra):
        x = Castra(x, readonly=True)
    return x.to_dask(columns)
開發者ID:danielballan,項目名稱:dask,代碼行數:13,代碼來源:io.py

示例5: test_reload

def test_reload():
    path = tempfile.mkdtemp(prefix='castra-')
    try:
        c = Castra(template=A, path=path)
        c.extend(A)

        d = Castra(path=path)

        assert c.columns == d.columns
        assert (c.partitions == d.partitions).all()
        assert c.minimum == d.minimum
    finally:
        shutil.rmtree(path)
開發者ID:sdvillal,項目名稱:castra,代碼行數:13,代碼來源:test_core.py

示例6: test_Castra

def test_Castra():
    c = Castra(template=A)
    c.extend(A)
    c.extend(B)

    assert c.columns == ['x', 'y']

    tm.assert_frame_equal(c[0:100], pd.concat([A, B]))
    tm.assert_frame_equal(c[:5], A)
    tm.assert_frame_equal(c[5:], B)

    tm.assert_frame_equal(c[2:5], A[1:])
    tm.assert_frame_equal(c[2:15], pd.concat([A[1:], B[:1]]))
開發者ID:sdvillal,項目名稱:castra,代碼行數:13,代碼來源:test_core.py

示例7: from_castra

def from_castra(x, columns=None):
    """
    Load a dask DataFrame from a Castra.

    The Castra project has been deprecated.  We recommend using Parquet
    instead.

    Parameters
    ----------
    x : filename or Castra
    columns: list or string, optional
        The columns to load. Default is all columns.
    """
    from castra import Castra
    if not isinstance(x, Castra):
        x = Castra(x, readonly=True)
    return x.to_dask(columns)
開發者ID:gameduell,項目名稱:dask,代碼行數:17,代碼來源:io.py

示例8: test_del_with_random_dir

 def test_del_with_random_dir(self):
     c = Castra(template=A)
     assert os.path.exists(c.path)
     c.__del__()
     assert not os.path.exists(c.path)
開發者ID:sdvillal,項目名稱:castra,代碼行數:5,代碼來源:test_core.py

示例9: load

def load(file_name):
    c = Castra(path = './subreddit_dumps/'+file_name+'.castra/')
    df = c.to_dask()
    return df
開發者ID:JherezTaylor,項目名稱:Datamining-Reddit,代碼行數:4,代碼來源:load_subreddit_castra.py

示例10: test_get_slice

def test_get_slice(base):
    c = Castra(path=base, template=A)
    c.extend(A)

    tm.assert_frame_equal(c[:], c[:, :])
    tm.assert_frame_equal(c[:, 1:], c[:][['y']])
開發者ID:CaptainAL,項目名稱:Spyder,代碼行數:6,代碼來源:test_core.py

示例11: test_readonly

def test_readonly():
    path = tempfile.mkdtemp(prefix='castra-')
    try:
        c = Castra(path=path, template=A)
        c.extend(A)
        d = Castra(path=path, readonly=True)
        with pytest.raises(IOError):
            d.extend(B)
        with pytest.raises(IOError):
            d.extend_sequence([B])
        with pytest.raises(IOError):
            d.flush()
        with pytest.raises(IOError):
            d.drop()
        with pytest.raises(IOError):
            d.save_partitions()
        with pytest.raises(IOError):
            d.flush_meta()
        assert c.columns == d.columns
        assert (c.partitions == d.partitions).all()
        assert c.minimum == d.minimum
    finally:
        shutil.rmtree(path)
開發者ID:CaptainAL,項目名稱:Spyder,代碼行數:23,代碼來源:test_core.py


注:本文中的castra.Castra類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。