Skip to main content

Bayesian changepoint detection and time series decomposition

Project description

Rbeast: A Python package for Bayesian changepoint detection and time series decomposition

BEAST (Bayesian Estimator of Abrupt change, Seasonality, and Trend) is a fast, generic Bayesian model averaging algorithm to decompose time series or 1D sequential data into individual components, such as abrupt changes, trends, and periodic/seasonal variations, as described in Zhao et al. (2019). BEAST is useful for changepoint detection (e.g., breakpoints, structural breaks, regime shifts, or anomalies), trend analysis, time series decomposition (e.g., trend vs seasonality), time series segmentation, and interrupted time series analysis. See a list of selected studies using BEAST .

Quick Installation

BEAST was implemented in C/C++ but accessible from R, Python, Matlab, and Octave. Run the following to install:

  • Python: pip install Rbeast
  • Matlab: eval(webread('http://b.link/rbeast',weboptions('cert','')))
  • Octave: eval(webread('http://b.link/rbeast'))
  • R lang: install.packages("Rbeast")

Quick Usage

One-liner code for Python, Matlab and R. Check github.com/zhaokg/Rbeast for more details.

# Python example
import Rbeast as rb; (Nile, Year)=rb.load_example('nile'); o=rb.beast(Nile,season='none'); rb.plot(o)

# Matlab/Octave example
load('Nile'); o = beast(Nile, 'season','none'); plotbeast(o)

# R example
library(Rbeast); data(Nile); o = beast(Nile); plot(o)

Installation for Python

A package Rbeast has been deposited here at PyPI: https://pypi.org/project/Rbeast/. Install from a binary wheel using:

  pip install Rbeast

Currently, binary wheel files were built for common OS platforms and CPU architectures (e.g., Linux, Windows, and macOS for both x86_64 and arm64 CPUs). If the pre-built wheel doesn't work on your computer, please try to install from the source:

pip install Rbeast --no-binary :none:

The installation from sources requires a C/C++ compiler (e.g., gcc, and clang) to build the binary package, which should be hassle-free on Linux ( with gcc) or Mac (with clang or xcode) and may be tricky on Windows systems. If needed, contact Kaiguang Zhao (zhao.1423@osu.edu) to help build the package for your specific OS platforms and Python versions.

Run and test Rbeast in Python

Import the Rbeast package as rb:

import Rbeast as rb
help(rb.load_example)
help(rb.beast)

The first example is annual streamflow of the River Nile starting from Year 1871. As annual observations, it has no periodic component (i.e., season='none').

nile, year = rb.load_example('nile')                     # nile is a 1d Python array or numpy vector
o          = rb.beast( nile, start=1871, season='none')  # season='none' bcz the data has no seasonal/periodic component
rb.plot(o, title='Annual streamflow of the Nile River')
rb.print(o)

# Print a list of fields in the output variable (e.g, o.data, o.RMSE, o.trend.cp, o.time, and o.tend.cpOccPr)
# Check the R manual for expalanations of the output (https://cran.r-project.org/web/packages/Rbeast/Rbeast.pdf) 
o                                                        # this is equivalent to "print(o)"                                    
# A wrong way to call beast for nile: If the 'season' arg is missing, the default season='harmonic' is used such that
# there is a seasonal component to be fit. But the Nile data is a trend-only signal with no periodic component
o = rb.beast(nile, start=1871 )  
rb.plot(o)      # the result is wrong. Use season='none' when calling beast for trend-only data                                 

The second example is a monthly time series of the Google Search popularity of beach over the US. This time series is reguarly-spaced (i.e., deltat=1 month =1/12 year); it has a cyclyic component with a period of 1 year. That is, the number of data points per period is period / deltat = 1 year / 1 month = 1/(1/12) = 12.

beach, year = rb.load_example('googletrend')
o = rb.beast(beach, start= 2004, deltat=1/12, period = 1.0)       # the time unit is uknown or arbitrary
o = rb.beast(beach, start= 2004, deltat=1/12, period ='1.0 year') # the time unit is fractional year
rb.plot(o)
rb.print(o)

The third example is a stack of 1066 satellite NDVI images over time, with a spatial dimenion of 10 rows x 9 cols: Each pixel is an IRREGULAR time series of 1066 NDVI values with periodic variations at a period of 1.0 year. When running, BEAST will first aggragate the irregular time series into regular ones at a specified time interaval of deltat (in this example, we choose deltat=1/12 year =1 month, but you may choose other intervals, depending on the needs).

ndvi3d, datestr,year = rb.load_example('imagestack')  # ndvi is a numpy array of shape (484,10,20); the 1st dim refers to the time

metadata                = rb.args() # create an empty object to stuff the attributes: "metadata  = lambda: None" also works
metadata.time           = year      # times of individulal images/data points: the unit here is fractional year (e.g., 2004.232)
metadata.deltaTime      = 1/12      # regular interval used to aggregate the irregular time series (1/12 = 1/12 year = 1 month)
metadata.period         = 1.0       # the period is 1.0 year, so freq= 1.0 /(1/12) = 12 data points per period
metadata.whichDimIsTime = 1         # the dimension of the input ndvi is (484,10,20): which dim refers to the time. whichDimIsTime is a 1-based index  

o = rb.beast123(ndvi3d, metadata, [], [], []) # rb.beast123(data, metadata, prior, mcmc, extra): default values used if not supplied

rb.print(o[4, 6])                 # print the (5-th row, 7-th col) pixel: Python uses 0-based indices.
rb.plot(o[4, 6])                  # plot the (5-th row, 7-th col) pixel: Python uses 0-based indices.

figure, axes = rb.plot(o[4, 6])   # plot the (5-th row, 7-th col) pixel: Python uses 0-based indices.
rb.plot( o[4, 7], fig = figure)   # plot the (5-th row, 8-th col)pixel: Setting fig=figure will use the existing figure to plot

Below is another way to supply the time info:

ndvi3d, datestr,year = rb.load_example('imagestack') 

metadata              = lambda: None # create an empty object to stuff the attributes: "metadata  = rb.args()" also works
metadata.time         = rb.args( )   # create an empty object to stuff the 'datestr' and 'strfmt' attributes
metadata.time.datestr = datestr      # datestr is a list of file names (e.g., s2_ndvi_2018-01-03.tif) that contain the date info
metadata.time.strfmt  = 'LT05_018032_20110726.yyyy-mm-dd'  # the format used to extract the year (YYYY), month (mm), and day (dd) from the strings
metadata.deltaTime    = 1/12        # regular interval used to aggregate the irregular time series (1/12 = 1/12 year = 1 month)
metadata.period       = 1.0         # the period is 1.0 year, so freq= 1.0 /(1/12) = 12 data points per period
metadata.whichDimIsTime = 1         # the dimension of the input ndvi is (484,10,20): which dim refers to the time. whichDimIsTime is a 1-based index  

extra = rb.args(                             # a set of options to specify the outputs or computational configurations
               dumpInputData    = True,    # make a copy of the aggregated input data in the beast ouput
               numThreadsPerCPU = 2,       # Paralell  computing: use 2 threads per cpu core
               numParThreads    = 0        # `0` means using all CPU cores: total num of ParThreads = numThreadsPerCPU * core Num           
              )
# Instead of using "extra=lambda:None;  extra.dumpInputData=True; ...", the above directly specifies the attribues in the object creation function

o = rb.beast123(ndvi3d, metadata, [], [], extra)  # rb.beast123(data, metadata, prior, mcmc, extra): default values used for prior and mcmc if missing

Description

Interpretation of time series data is affected by model choices. Different models can give different or even contradicting estimates of patterns, trends, and mechanisms for the same data—a limitation alleviated by the Bayesian estimator of abrupt change,seasonality, and trend (BEAST) of this package. BEAST seeks to improve time series decomposition by forgoing the "single-best-model" concept and embracing all competing models into the inference via a Bayesian model averaging scheme. It is a flexible tool to uncover abrupt changes (i.e., change-points), cyclic variations (e.g., seasonality), and nonlinear trends in time-series observations. BEAST not just tells when changes occur but also quantifies how likely the detected changes are true. It detects not just piecewise linear trends but also arbitrary nonlinear trends. BEAST is applicable to real-valued time series data of all kinds, be it for remote sensing, finance, public health, economics, climate sciences, ecology, and hydrology. Example applications include its use to identify regime shifts in ecological data, map forest disturbance and land degradation from satellite imagery, detect market trends in economic data, pinpoint anomaly and extreme events in climate data, and unravel system dynamics in biological data. Details on BEAST are reported in Zhao et al. (2019). The paper is available at https://go.osu.edu/beast2019.

Reference

Reporting Bugs or getting help

BEAST is distributed as is and without warranty of suitability for application. The one distributed above is still a beta version, with potential room for further improvement. If you encounter flaws/bugs with the software, please report the issue. Providing a description of the conditions under which the bug occurred will help to identify the bug. You can directly email its maintainer Dr. Kaiguang Zhao at zhao.1423@osu.edu to report issues or request feature enhancements. Alternatively, use the Issues tracker on GitHub.


Selected publications using BEAST/Rbeast

Despite being published originally for ecological and enviornmental applications, BEAST is developed as a generic tool applicable to time series or time-series-like data arising from all disciplines. BEAST is not a heuristic algorithm but a rigorous statistical model. Below is a list of selected peer-reviewed pulications that used BEAST for statistical data analysis.

Discipline Publication Title
Remote Sensing Li, J., Li, Z., Wu, H., and You, N., 2022. Trend, seasonality, and abrupt change detection method for land surface temperature time-series analysis: Evaluation and improvement. Remote Sensing of Environment, 10.1016/j.rse.2022.113222
Paleoclimatology Anastasia Zhuravleva et al., 2023. Caribbean salinity anomalies contributed to variable North Atlantic circulation and climate during the Common Era. Science Advances, DOI:10.1126/sciadv.adg2639
Population Ecology Henderson, P. A. (2021). Southwood's Ecological Methods (5th edition). Oxford University Press., page 475-476
Climatology Webster, M.A., Riihelä, A., Kacimi, S., Ballinger, T.J., Blanchard-Wrigglesworth, E., Parker, C.L. and Boisvert, L., 2024. Summer snow on Arctic sea ice modulated by the Arctic Oscillation. Nature Geoscience, pp.1-8.
Cardiology Ozier, D., Rafiq, T., de Souza, R. and Singh, S.M., 2023. Use of Sacubitril/Valsartan Prior to Primary Prevention Implantable Cardioverter Defibrillator Implantation. CJC Open.
Spatial Ecology Laurin, G.V., Cotrina-Sanchez, A., Belelli-Marchesini, L., Tomelleri, E., Battipaglia, G., Cocozza, C., Niccoli, F., Kabala, J.P., Gianelle, D., Vescovo, L. and Da Ros, L., 2024. Comparing ground below-canopy and satellite spectral data for an improved and integrated forest phenology monitoring system. Ecological Indicators, 158, p.111328.
Anthropocene Science Thomas, E.R., Vladimirova, D.O., Tetzner, D.R., Emanuelsson, D.B., Humby, J., Turner, S.D., Rose, N.L., Roberts, S.L., Gaca, P. and Cundy, A.B., 2023. The Palmer ice core as a candidate Global boundary Stratotype Section and Point for the Anthropocene series. The Anthropocene Review, p.20530196231155191.
Biomedical Engineering Saghbiny, E., Da Silva, J., Leblanc, L., Bobbio, C., Morel, G.G., Vialle, R. and Tamadazte, B., 2023, September. Breach detection in spine surgery based on cutting torque with ex-vivo experimental validation. In Conference on New Technologies for Computer and Robot Assisted Surgery.
Political Science Reuning, K., Whitesell, A. and Hannah, A.L., 2022. Facebook algorithm changes may have amplified local republican parties. Research & Politics, 9(2), p.20531680221103809.
Food Science Zaytsev, V., Tutukina, M.N., Chetyrkina, M.R., Shelyakin, P.V., Ovchinnikov, G., Satybaldina, D., Kondrashov, V.A., Bandurist, M.S., Seilov, S., Gorin, D.A. and Fedorov, F.S., 2024. Monitoring of meat quality and change-point detection by a sensor array and profiling of bacterial communities. Analytica Chimica Acta, p.343022.
Ecology Dashti, H., Chen, M., Smith, B., Zhao, K. and Moore, D., 2024. Rethinking Ecosystems Disturbance Recovery: what it was or what it could have been?. Geophysical Research Letters
Spatial Hydrology Wang, Yiming, Xuesong Zhang, Kaiguang Zhao, and Debjani Singh. "Streamflow in the United States: Characteristics, trends, regime shifts, and extremes." Scientific Data 11, no. 1 (2024): 788.
Business Science Li, Z. and Tian, Y., 2024. Skewed multifractal cross-correlation between price and volume during the COVID-19 pandemic: Evidence from China and European carbon markets. Applied Energy, 371, p.123716.
Ecography Smith, M.M. and Pauli, J.N., 2024. Small but connected islands can maintain populations and genetic diversity under climate change. Ecography, p.e07119.
Economics Sapkota, B.P., 2024. Analysis of Climate Policy and Monetary Policy Nexus in the Norwegian Context: A DSGE Approach (Master's thesis, Norwegian University of Life Sciences).
Cognitive Science Prein, J.C., Maurits, L., Werwach, A., Haun, D.B. and Bohn, M., 2024. Variation in gaze following across the life span: A process‐level perspective. Developmental Science, p.e13546.
Neuroscience Aqel, K., Wang, Z., Peng, Y.B. and Maia, P.D., 2024. Reconstructing rodent brain signals during euthanasia with eigensystem realization algorithm (ERA). Scientific Reports, 14(1), p.12261.
Glaciology Ramón, C.L., Rueda, F.J., Priet‐Mahéo, M.C. and Andradóttir, H., 2024. The impact of deep glacial water diversions from a hydroelectric reservoir in the thermal dynamics of a sub-arctic lake. Journal of Hydrology, 635, p.131081.
Quaternary Science Gibson, D.K., Bird, B.W., Finney, B.P. and Steinman, B.A., 2024. Holocene insolation and sea surface temperature influences on the polar front jet stream and precipitation in the midcontinental United States. Quaternary Science Reviews, 340, p.108865.
Geography Lyu, R., Pang, J., Zhang, J. and Zhang, J., 2024. The impacts of disturbances on mountain ecosystem services: Insights from BEAST and Bayesian network. Applied Geography, 162, p.103143.
Watershed Hydrology Sakizadeh, M., Milewski, A. and Sattari, M.T., 2023. Analysis of Long-Term Trend of Stream Flow and Interaction Effect of Land Use and Land Cover on Water Yield by SWAT Model and Statistical Learning in Part of Urmia Lake Basin, Northwest of Iran. Water, 15(4), p.690.
Oceanography Oehlert, A.M., Hunter, H., Riopelle, C. and Purkis, S.J., 2023. Perturbation to North Atlantic Ocean‐Climate Dynamics Tripled Whitings Mud Production in the Bahamas. Journal of Geophysical Research: Oceans, 128(11), p.e2023JC020021.
Hydraulic Engineering Xu, X., Yang, J., Ma, C., Qu, X., Chen, J. and Cheng, L., 2022. Segmented modeling method of dam displacement based on BEAST time series decomposition. Measurement, 202, p.111811.
Social Media Barrie, C., Ketchley, N., Siegel, A. and Bagdouri, M., 2023. Measuring Media Freedom.
Political Economy Benchimol, J. and Palumbo, L., 2023. Sanctions and Russian Online Prices.
Physiology Shakeel, M., Brockmann, A. Temporal effects of sugar intake on fly local search and honey bee dance behaviour. J Comp Physiol A (2023). https://doi.org/10.1007/s00359-023-01670-6
Injuries & Hazards Delavary, M., Kalantari, A.H., Mohammadzadeh Moghaddam, A., Fakoor, V., Lavallière, M. and Wilhelm Siebert, F., 2024. Road traffic mortality in Iran: longitudinal trend and seasonal analysis, March 2011-February 2020. International journal of injury control and safety promotion, 31(1), pp.125-137.
Civil Engineering Langtry, M., Wichitwechkarn, V., Ward, R., Zhuang, C., Kreitmair, M.J., Makasis, N., Conti, Z.X. and Choudhary, R., 2024. Impact of data for forecasting on performance of model predictive control in buildings with smart energy storage. Energy and Buildings, p.114605.
Ichthyology Kaeding, L.R., 2023. Climate-change and nonnative-piscivore impacts on a renowned Oncorhynchus metapopulation, requirements for metapopulation recovery, and similarities to anadromous salmonid metapopulations. Aquatic Sciences, 85(4), p.88.
Remote Sensing Mulverhill, C., Coops, N.C. and Achim, A., 2023. Continuous monitoring and sub-annual change detection in high-latitude forests using Harmonized Landsat Sentinel-2 data. ISPRS Journal of Photogrammetry and Remote Sensing, 197, pp.309-319.
Physical Chemistry Faran, M. and Bisker, G., 2023. Nonequilibrium Self-Assembly Time Forecasting by the Stochastic Landscape Method. The Journal of Physical Chemistry B.
Biogeochemistry Dahl, M., Gullström, M., Bernabeu, I., Serrano, O., Leiva‐Dueñas, C., Linderholm, H.W., Asplund, M.E., Björk, M., Ou, T., Svensson, J.R. and Andrén, E., 2024. A 2,000‐year record of eelgrass (Zostera marina L.) colonization shows substantial gains in blue carbon storage and nutrient retention. Global Biogeochemical Cycles, 38(3), p.e2023GB008039.
Mechanobiology Faran, M., Ray, D., Nag, S., Raucci, U., Parrinello, M. and Bisker, G., 2024. A Stochastic Landscape Approach for Protein Folding State Classification. Journal of Chemical Theory and Computation.
Analytical Chemistry Simic, M., Neuper, C., Hohenester, U. and Hill, C., 2023. Optofluidic force induction as a process analytical technology. Analytical and Bioanalytical Chemistry, pp.1-11.
Ecosystem Sciences Lyu, R., Zhao, W., Pang, J., Tian, X., Zhang, J. and Wang, N., 2022. Towards a sustainable nature reserve management: Using Bayesian network to quantify the threat of disturbance to ecosystem services. Ecosystem Services, 58, p.101483.
Environmental Sciences Nickerson, S., Chen, G., Fearnside, P., Allan, C.J., Hu, T., de Carvalho, L.M. and Zhao, K., 2022. Forest loss is significantly higher near clustered small dams than single large dams per megawatt of hydroelectricity installed in the Brazilian Amazon. Environmental Research Letters.
Geology Fan, X., Goeppert, N. and Goldscheider, N., 2023. Quantifying the historic and future response of karst spring discharge to climate variability and change at a snow-influenced temperate catchment in central Europe. Hydrogeology Journal, pp.1-17.
Wildlife Smith, Matthew M., and Jonathan N. Pauli. "Connectivity maintains genetic diversity and population persistence within an archipelagic refugia even under declining lake ice." Mechanisms of species recovery for a forest carnivore in a changing landscape: 173.
Climate Sciences Duke, N.C., Mackenzie, J.R., Canning, A.D., Hutley, L.B., Bourke, A.J., Kovacs, J.M., Cormier, R., Staben, G., Lymburner, L. and Ai, E., 2022. ENSO-driven extreme oscillations in mean sea level destabilise critical shoreline mangroves—An emerging threat. PLOS Climate, 1(8), p.e000003
Finance Candelaria, Christopher A., Shelby M. McNeill, and Kenneth A. Shores. (2022). What is a School Finance Reform? Uncovering the ubiquity and diversity of school finance reforms using a Bayesian changepoint estimator.(EdWorkingPaper: 22-587). Retrieved from Annenberg Institute at Brown University: https://doi.org/10.26300/4vey-3w10
Public health Linnell, K., Fudolig, M., Schwartz, A., Ricketts, T.H., O'Neil-Dunne, J.P., Dodds, P.S. and Danforth, C.M., 2022. Spatial changes in park visitation at the onset of the pandemic. arXiv preprint arXiv:2205.15937.
Biometerology Li, Y., Liu, Y., Bohrer, G., Cai, Y., Wilson, A., Hu, T., Wang, Z. and Zhao, K., 2022. Impacts of forest loss on local climate across the conterminous United States: Evidence from satellite time-series observations. Science of The Total Environment, 802, p.149651.
Applied Math Ferguson, Daniel, and Francois G. Meyer. Probability density estimation for sets of large graphs with respect to spectral information using stochastic block models. arXiv preprint arXiv:2207.02168 (2022).
Transportation Science Delavary, M., Kalantari, A.H., Mohammadzadeh Moghaddam, A., Fakoor, V., Lavalliere, M. and Wilhelm Siebert, F., 2023. Road traffic mortality in Iran: longitudinal trend and seasonal analysis, March 2011-February 2020. International Journal of Injury Control and Safety Promotion, pp.1-12.
Water quality He, Ziming, Jiayu Yao, Yancen Lu, and Danlu Guo. "Detecting and explaining long-term changes in river water quality in south eastern Australia." Hydrological Processes: e14741.
Air quality Wu, S., Yao, J., Wang, Y. and Zhao, W., 2023. Influencing factors of PM2. 5 concentrations in the typical urban agglomerations in China based on wavelet perspective. Environmental Research, p.116641.
Hydrology Zohaib, M. and Choi, M., 2020. Satellite-based global-scale irrigation water use and its contemporary trends. Science of The Total Environment, 714, p.136719.
Energy Engineering Lindig, S., Theristis, M. and Moser, D., 2022. Best practices for photovoltaic performance loss rate calculations. Progress in Energy, 4(2), p.022003.
Virology Shen, L., Sun, M., Song, S., Hu, Q., Wang, N., Ou, G., Guo, Z., Du, J., Shao, Z., Bai, Y. and Liu, K., 2022. The impact of anti-COVID19 nonpharmaceutical interventions on hand, foot, and mouth disease—A spatiotemporal perspective in Xi'an, northwestern China. Journal of medical virology.
Pharmaceutical Sciences Patzkowski, M.S., Costantino, R.C., Kane, T.M., Nghiem, V.T., Kroma, R.B. and Highland, K.B., 2022. Military Health System Opioid, Tramadol, and Gabapentinoid Prescription Volumes Before and After a Defense Health Agency Policy Release. Clinical Drug Investigation, pp.1-8.
Geography Cai, Y., Liu, S. and Lin, H., 2020. Monitoring the vegetation dynamics in the Dongting Lake Wetland from 2000 to 2019 using the BEAST algorithm based on dense Landsat time series. Applied Sciences, 10(12), p.4209.
Oceanography Pitarch, J., Bellacicco, M., Marullo, S. and Van Der Woerd, H.J., 2021. Global maps of Forel-Ule index, hue angle and Secchi disk depth derived from 21 years of monthly ESA Ocean Colour Climate Change Initiative data. Earth System Science Data, 13(2), pp.481-490.
Photovoltaics Micheli, L., Theristis, M., Livera, A., Stein, J.S., Georghiou, G.E., Muller, M., Almonacid, F. and Fernadez, E.F., 2021. Improved PV soiling extraction through the detection of cleanings and change points. IEEE Journal of Photovoltaics, 11(2), pp.519-526.
Climate Sciences White, J.H., Walsh, J.E. and Thoman Jr, R.L., 2021. Using Bayesian statistics to detect trends in Alaskan precipitation. International Journal of Climatology, 41(3), pp.2045-2059.
Field Hydrology Merk, M., Goeppert, N. and Goldscheider, N., 2021. Deep desiccation of soils observed by long-term high-resolution measurements on a large inclined lysimeter. Hydrology and Earth System Sciences, 25(6), pp.3519-3538.
Sports Science Roccetti, M. and Piconi, F., Minutes played by Under 21 players in Serie A: a descriptive analytics study.
Forest Ecology Moreno-Fernandez, D., Viana-Soto, A., Camarero, J.J., Zavala, M.A., Tijerin, J. and Garcia, M., 2021. Using spectral indices as early warning signals of forest dieback: The case of drought-prone Pinus pinaster forests. Science of The Total Environment, 793, p.148578.
Petroleum Engineering Pan, Y., Bi, R., Yang, S., Lyu, Z. and Ju, X., 2024, February. Application of a Bayesian Ensemble Algorithm for Automated Production Diagnostic of Gas Wells with Plunger-Lift. In International Petroleum Technology Conference (p. D011S029R008). IPTC.
Atmospheric Sciences Tingwei, C., Tingxuan, H., Bing, M., Fei, G., Yanfang, X., Rongjie, L., Yi, M. and Jie, Z., 2021. Spatiotemporal pattern of aerosol types over the Bohai and Yellow Seas observed by CALIOP. Infrared and Laser Engineering, 50(6), p.20211030.
Terrestrial ecology Dashti, H., Pandit, K., Glenn, N.F., Shinneman, D.J., Flerchinger, G.N., Hudak, A.T., de Graaf, M.A., Flores, A., Ustin, S., Ilangakoon, N. and Fellows, A.W., 2021. Performance of the ecosystem demography model (EDv2. 2) in simulating gross primary production capacity and activity in a dryland study area. Agricultural and Forest Meteorology, 297, p.108270.
Statistics Storath, M. and Weinmann, A., 2023. Smoothing splines for discontinuous signals. Journal of Computational and Graphical Statistics, (just-accepted), pp.1-26.
Environmental Engineering Bainbridge, R., Lim, M., Dunning, S., Winter, M.G., Diaz-Moreno, A., Martin, J., Torun, H., Sparkes, B., Khan, M.W. and Jin, N., 2022. Detection and forecasting of shallow landslides: lessons from a natural laboratory. Geomatics, Natural Hazards and Risk, 13(1), pp.686-704.
Fishery Theis, S., Wallace, A.,, Poesch, M., Portiss, R. & Ruppert, J.. (2024). Balancing boat-electrofishing sampling effort against costs for nearshore fish communities in the Toronto waterfront, Lake Ontario. Fisheries Management and Ecology. 10.1111/fme.12733.
Hydrology Yang, X., Tian, S., You, W. and Jiang, Z., 2021. Reconstruction of continuous GRACE/GRACE-FO terrestrial water storage anomalies based on time series decomposition. Journal of Hydrology, 603, p.127018.
Landscape Ecology Adams, B.T., Matthews, S.N., Iverson, L.R., Prasad, A.M., Peters, M.P. and Zhao, K., 2021. Spring phenological variability promoted by topography and vegetation assembly processes in a temperate forest landscape. Agricultural and Forest Meteorology, 308, p.108578.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Rbeast-0.1.23.tar.gz (710.8 kB view details)

Uploaded Source

Built Distributions

Rbeast-0.1.23-cp312-cp312-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

Rbeast-0.1.23-cp312-cp312-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

Rbeast-0.1.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

Rbeast-0.1.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

Rbeast-0.1.23-cp312-cp312-macosx_11_0_arm64.whl (510.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

Rbeast-0.1.23-cp312-cp312-macosx_10_9_x86_64.whl (602.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

Rbeast-0.1.23-cp311-cp311-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

Rbeast-0.1.23-cp311-cp311-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

Rbeast-0.1.23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

Rbeast-0.1.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

Rbeast-0.1.23-cp311-cp311-macosx_11_0_arm64.whl (510.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

Rbeast-0.1.23-cp311-cp311-macosx_10_9_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

Rbeast-0.1.23-cp310-cp310-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

Rbeast-0.1.23-cp310-cp310-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

Rbeast-0.1.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Rbeast-0.1.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

Rbeast-0.1.23-cp310-cp310-macosx_11_0_arm64.whl (510.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

Rbeast-0.1.23-cp310-cp310-macosx_10_9_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

Rbeast-0.1.23-cp39-cp39-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

Rbeast-0.1.23-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

Rbeast-0.1.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Rbeast-0.1.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

Rbeast-0.1.23-cp39-cp39-macosx_11_0_arm64.whl (510.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

Rbeast-0.1.23-cp39-cp39-macosx_10_9_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Rbeast-0.1.23-cp38-cp38-win_amd64.whl (535.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

Rbeast-0.1.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Rbeast-0.1.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

Rbeast-0.1.23-cp38-cp38-macosx_11_0_arm64.whl (510.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

Rbeast-0.1.23-cp38-cp38-macosx_10_9_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Rbeast-0.1.23-cp37-cp37m-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

Rbeast-0.1.23-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

Rbeast-0.1.23-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

Rbeast-0.1.23-cp37-cp37m-macosx_10_9_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file Rbeast-0.1.23.tar.gz.

File metadata

  • Download URL: Rbeast-0.1.23.tar.gz
  • Upload date:
  • Size: 710.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for Rbeast-0.1.23.tar.gz
Algorithm Hash digest
SHA256 8e0eac99391667a4004d236662dc410760383f341bf19de40698d6e50bf87eaf
MD5 3607a2b3e799de4080382bb0bfd36e86
BLAKE2b-256 44c2506baf1a935969c00dd147a53e1a7cb15eed17198de21ac030f351a42f77

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: Rbeast-0.1.23-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 535.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for Rbeast-0.1.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 332c891a70e1a1d5e7a53fe782a7e5d4ad5a79038d57a6613a3809bfef62772c
MD5 9d0b31aad52f4a51d45655dbc732a2f7
BLAKE2b-256 044b3a05d041268bd91782d2fa5bd5feb1d92e99e24d688c899130e6fbc3e458

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bf541eecdb0e1a9feeff4ccd4b3d13357ada3b69299671d10c1659d190fb2b2
MD5 49e18ee19aac3c94bdfac6f80d15f331
BLAKE2b-256 86ebbfc150f5a4ad16159fc25787d1db9b8485cb76bcc2164561ab4ad7c8f598

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de9aa0d3484f343981554f64e1cc96d5ac670efbf31ffb5d3b701093190ab86f
MD5 c8363705fb3041bb692bcdef78f04b37
BLAKE2b-256 f2267fd5f0eebb202e6d6c94ce8963e2f60b1c3b68bd849d78ab6e7c6184edc1

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae19f15b21205fc10e1163bc41b150ff0b1be1da075f3a6d3f7bb9cce3e0da6c
MD5 cb4da49794d23cbb8983712bd2d2b3a0
BLAKE2b-256 753030fdf603206db04148d25362c0555c41c20d1dd8db018b72d27f69289ebb

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08460e71569d51994e6e859fc982632663f7d4d17e9c03379a3196ffaaa8e9e8
MD5 ae5fa399f7236582c3c491a8f93d0f15
BLAKE2b-256 80edbb175a9b37937678275a177df745e2d196f20a78477757d2cb04cbfe1b49

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b209663798c18a5115a4d2d20eb758ff3e99328bfc9be2ba5ceafe8bd3aeb989
MD5 e89237a97a52dbc983c55d9a97a3e069
BLAKE2b-256 1cf3dca4e4760e24a923ea64c31fd69884622c5f4d7858a84fa14655f114bf3e

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: Rbeast-0.1.23-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 535.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for Rbeast-0.1.23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8df05d97b8a651117e7ea4f00372e98740df6b35b46ea82d7c74bb618cdb5e13
MD5 0f7047e2e373b3ce8166c35ab1ec31f3
BLAKE2b-256 468a6057006e3d6c99aedd567e588212886553ed14b77efe91712151bf8e347e

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50e3afc641b47ae5e82fa83936eca461fe6ccab42f587c2f64c35195776d258b
MD5 4f6684d7275ca4321561d175306a7f3a
BLAKE2b-256 81e180e9baba3407f988a66a56417ed302cffb438272f5f94730e13fba2b29e9

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7f600c81fc41030b833bb38903de1b358dbe893936affadd548f3c8d4ee9f90
MD5 d9aeed2568b9ae7b0de12af20a988c5a
BLAKE2b-256 0d6917027cf33fd50137e555dfbabd62fcd6ffd045564f0917d7d0390e327a27

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5811a3e9dbabd925260fa4906c11603543158fe07fad8d40e4c04e2ea4f036ba
MD5 818ddb8fe60a8b7aa8db34a5f39a4a18
BLAKE2b-256 a50a57df07702cbd3a9dcfe7f51a9eb030432f561dc6c7d0ad84db1e64bc0f0a

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29affb5700c83559450c4a391ec03c5a914b3cf130974e9acd739d322aeb35b5
MD5 3c9d021bd67b82197ef7238b464faade
BLAKE2b-256 648b2be6a0f3af2979c4f10cbbdcdd11afe505e46dad0b437849f24185f1a36a

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea142b189ccd443b7d895c9cc35c203077265bc57c8b84e14866ac93ac0d91f4
MD5 2cd94d3bf60fd341d218da7f0dd99f21
BLAKE2b-256 28bc2916c3897de03aeebdf0b56d6364554c5123b58167e8f078c7bdcd9d2998

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: Rbeast-0.1.23-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 535.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for Rbeast-0.1.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ab98838d36fd56772d40dddeb7a5923b022274cfd2f2e3efed61552b7ee0a81
MD5 7502cf0fba69b55c4d15557ec5e3fcc2
BLAKE2b-256 808eed07b68ea506219a11ad67d21756902428706846d3f762c4b9991af550c7

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7995b4dcff7edc39b5ec4a98be054dc1371deb2be9b5a6917ba37a49c74eff9e
MD5 fa9c4d766493bc521a728b799eef4355
BLAKE2b-256 ebf540b5c40a22c5c8bbd64f56c732ae58520bbcbaa98eb2ffc4772e3ba7a646

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07bf160824be841a42c3e576fccfc1c855f00003907ffa81b3a85a957a3090f6
MD5 eb784c87073d1efbb84380ca678c1a21
BLAKE2b-256 8a4193929905a5135b6d9ecc86b944462998bc5f60d17cfdd5c0adcc03409ee9

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cd973c404e2e2e69ac618b42d9983b34599994579beda4d29e00e0922e07791
MD5 bff7fbe0feeeb50055d92d19802c247c
BLAKE2b-256 b133ebd9b926d6cf5f4c11e0268b1f3b90f763cf43a4c9dff6800facdb4a615d

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cb1fb7087972746ad551ff5b1960743009ea9b6823518cb2e519199cb10ae64
MD5 152a97924bbe192c9293d50bfc0c0158
BLAKE2b-256 3d80adf5bb8ccc93bb6772a09c798911d26335c450d6cd78dca7aeb529eb23bf

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3946d54dc0acec1ed685097c5752817315cd91e105a094e4ca6817afef897cf1
MD5 9e3ea4fcaf1935bbc13f3e8a90f9c55a
BLAKE2b-256 0a6900f2be94cb5a7c3ec32382f24b6c75998dde642da65f05aff0498a86ab87

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: Rbeast-0.1.23-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 535.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for Rbeast-0.1.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d92b52472efc1ad877f7f1ea57fb6e2663e66907fcb9e16fec2133a4ee6f8bf8
MD5 7608384ef9e6ef2fae5e5ead01d709f2
BLAKE2b-256 b2a3f03a727996c4f84dd03cd6331eac757212e02249b78d007e40c311c23eef

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 469c1adb8e3a6ab196f51f97abab9d1bd62d9afcc34fb460b7a351212312cf99
MD5 e4b4ce5e6ae2917b3083ee9eba113b4b
BLAKE2b-256 96db17643ffa1100c8b96fc5c76f2cb25722b773989f5a914a0cb3b0c9bc5c2a

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d4ceef2556c6d0d41187d0cbd22037b09f394b10424bd9227ce8064de9cfd4f
MD5 650c9732faa7193780f2fbae668b8c6b
BLAKE2b-256 180241e4925ab99a576307a18f6fe588b0bf7315ad6e6aa8fc8efeaaf1299844

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1d2244fdda71866c964f6d6f71e6c626bd277848c413628a1d014c79a4c846a
MD5 4d3afaafe2610ca3f5e3ff0e5f73056e
BLAKE2b-256 1e31536f4473bab8295040c447ed42d792ed7dd719710299dbff4ddeab636b61

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a9655065cbc29bd787e63eb2914c8387e8f296d47c5f2081c92c32fa16bc912
MD5 339cf389b2555f91726081add469233f
BLAKE2b-256 33a588e441c92e3c8928143a8de861f945d14eb4cfbf4cc7baf61f63335b21f2

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89921133d68728b6bdd6e325cca936271374995a4fc6dacb4eaf6b24d2b945ef
MD5 85b71a7179dcd7b3fef140c9f35ade32
BLAKE2b-256 209e9abbc996991a5dcc74017b018bf9c5985dd52db4e6dbda05c7569c447056

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: Rbeast-0.1.23-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 535.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for Rbeast-0.1.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 514199747b89ef60f36e0c65bae3979dc847c3c25d71b0ad16a25f3e328a0008
MD5 ce109ace89865bdcb202a5dcfef40a02
BLAKE2b-256 4cf91fcec3ad0096e29f36a39feb3ad81c471c0d755b581185db05aebf9154e7

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5624f38f18c97946311741391e3c90bebbb88fb8a0b91cb2f9a2cb82c1797bf
MD5 0c1d36570e05dbeeeabd848e4a4419e6
BLAKE2b-256 4013d1de50890f35536956368bd108b080b0c73d0095c6058d1c7f55a4f1eb50

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25b107c69d5dc8f13577e01c96f392edda5e61a9c054de373297a5c5afe13e82
MD5 aaea21e8db9f05e824701a02eb16369a
BLAKE2b-256 2b70906409bd3e37550fe3be867536cd693dcb24a99eea24ea8323f9936ae73f

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1551da3cc586da3c435468d51cbd0f635362cdbd6d03988c02b8e4ba394eb8cf
MD5 1e4731e5db631640b26ce1fbe4b094ba
BLAKE2b-256 37a1f7d3eb8efc0897846e62999f00d9ace54e31fb9191976acb35fab8e22eac

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a40392abd6a3ef838683666bdec263634223671f7a5900b8548c2980f18910a4
MD5 4d84795bed0be567126be74e34c96fe8
BLAKE2b-256 c076feddd04a10f77511368d4972ddbb3330c3936f40ca737e07f7ecb45355c0

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: Rbeast-0.1.23-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 535.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for Rbeast-0.1.23-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a3087c48cf6312838d8a9cf88d3811971854452d1839c785d3ab0e9daa508d2d
MD5 7a8a3978ec6851cb96ab8d9188454724
BLAKE2b-256 e28d28a0877e51bd7d545f3d2d79bd8a4f31e952598abc451c32ecefda7c4540

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62d4552b39e48563e33f38e4c7a27ded72a494f45b540bdafdfd7c8b578913e2
MD5 4010f106d8ad2e3c55e8099665317884
BLAKE2b-256 70e7704d02a91ce2e152b49608f037154106203549a25ebde852ec7a101d064d

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81752a2b3166e2ce2a79dce2cf6ab98386cafa1b0fb4eab1291d3e2bc38e7970
MD5 268917566e15b989ed71d74d8e8ca48a
BLAKE2b-256 d9e5c2237e2c45245067686fa58edeefdbc36c9e0b1802a129e147edb6e8f193

See more details on using hashes here.

File details

Details for the file Rbeast-0.1.23-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Rbeast-0.1.23-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bb2c36506bd25d5b1695d6392256fa32fb1ed0ccfefae377b838053a69a676c
MD5 5c9f05c34cec8260178a6d11997c8b74
BLAKE2b-256 90065c2461b7df339972b5da657bc746fad0ae845e4fe190e774d4063436cf0b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page