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


Python pandas.SparseSeries類代碼示例

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


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

示例1: _create_sp_series

def _create_sp_series():
    nan = np.nan

    # nan-based
    arr = np.arange(15, dtype=np.float64)
    arr[7:12] = nan
    arr[-1:] = nan

    bseries = SparseSeries(arr, kind='block')
    bseries.name = u'bseries'
    return bseries
開發者ID:8ballbb,項目名稱:ProjectRothar,代碼行數:11,代碼來源:generate_legacy_storage_files.py

示例2: _create_sp_tsseries

def _create_sp_tsseries():
    nan = np.nan

    # nan-based
    arr = np.arange(15, dtype=np.float64)
    arr[7:12] = nan
    arr[-1:] = nan

    date_index = bdate_range('1/1/2011', periods=len(arr))
    bseries = SparseSeries(arr, index=date_index, kind='block')
    bseries.name = u'btsseries'
    return bseries
開發者ID:8ballbb,項目名稱:ProjectRothar,代碼行數:12,代碼來源:generate_legacy_storage_files.py

示例3: test_where_with_numeric_data_and_other

def test_where_with_numeric_data_and_other(data, other):
    # GH 17386
    lower_bound = 1.5

    sparse = SparseSeries(data)
    result = sparse.where(sparse > lower_bound, other)

    dense = Series(data)
    dense_expected = dense.where(dense > lower_bound, other)
    sparse_expected = SparseSeries(dense_expected, fill_value=other)

    tm.assert_series_equal(result, dense_expected)
    tm.assert_sp_series_equal(result, sparse_expected)
開發者ID:BobMcFry,項目名稱:pandas,代碼行數:13,代碼來源:test_indexing.py

示例4: test_where_with_numeric_data

def test_where_with_numeric_data(data):
    # GH 17386
    lower_bound = 1.5

    sparse = SparseSeries(data)
    result = sparse.where(sparse > lower_bound)

    dense = Series(data)
    dense_expected = dense.where(dense > lower_bound)
    sparse_expected = SparseSeries(dense_expected)

    tm.assert_series_equal(result, dense_expected)
    tm.assert_sp_series_equal(result, sparse_expected)
開發者ID:BobMcFry,項目名稱:pandas,代碼行數:13,代碼來源:test_indexing.py

示例5: test_where_with_bool_data_and_other

def test_where_with_bool_data_and_other(other):
    # GH 17386
    data = [False, False, True, True, False, False]
    cond = True

    sparse = SparseSeries(data)
    result = sparse.where(sparse == cond, other)

    dense = Series(data)
    dense_expected = dense.where(dense == cond, other)
    sparse_expected = SparseSeries(dense_expected, fill_value=other)

    tm.assert_series_equal(result, dense_expected)
    tm.assert_sp_series_equal(result, sparse_expected)
開發者ID:BobMcFry,項目名稱:pandas,代碼行數:14,代碼來源:test_indexing.py

示例6: test_where_with_bool_data

def test_where_with_bool_data():
    # GH 17386
    data = [False, False, True, True, False, False]
    cond = True

    sparse = SparseSeries(data)
    result = sparse.where(sparse == cond)

    dense = Series(data)
    dense_expected = dense.where(dense == cond)
    sparse_expected = SparseSeries(dense_expected)

    tm.assert_series_equal(result, dense_expected)
    tm.assert_sp_series_equal(result, sparse_expected)
開發者ID:BobMcFry,項目名稱:pandas,代碼行數:14,代碼來源:test_indexing.py

示例7: _create_sp_series

def _create_sp_series():

    import numpy as np
    from pandas import SparseSeries

    nan = np.nan

    # nan-based
    arr = np.arange(15, dtype=np.float64)
    arr[7:12] = nan
    arr[-1:] = nan

    bseries = SparseSeries(arr, kind='block')
    bseries.name = 'bseries'
    return bseries
開發者ID:ARF1,項目名稱:pandas,代碼行數:15,代碼來源:generate_legacy_pickles.py

示例8: _create_sp_series

def _create_sp_series():

    import numpy as np
    from pandas import bdate_range, SparseSeries

    nan = np.nan

    # nan-based
    arr = np.arange(15, dtype=float)
    index = np.arange(15)
    arr[7:12] = nan
    arr[-1:] = nan

    date_index = bdate_range('1/1/2011', periods=len(index))
    bseries = SparseSeries(arr, index=index, kind='block')
    bseries.name = 'bseries'
    return bseries
開發者ID:BlackEarth,項目名稱:portable-python-win32,代碼行數:17,代碼來源:generate_legacy_pickles.py

示例9: time_sparse_series_from_coo

 def time_sparse_series_from_coo(self):
     self.ss = SparseSeries.from_coo(self.A)
開發者ID:AllenDowney,項目名稱:pandas,代碼行數:2,代碼來源:sparse.py

示例10: time_sparse_series_from_coo

 def time_sparse_series_from_coo(self):
     SparseSeries.from_coo(self.matrix)
開發者ID:bkandel,項目名稱:pandas,代碼行數:2,代碼來源:sparse.py


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