Skip to main content

Bayesian changepoint detection and time series decomposition

Reason this release was yanked:

inconistent wheel names

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
Archaeogenetics Sikora, M., Canteri, E., Fernandez-Guerra, A., Oskolkov, N., Ågren, R., Hansson, L., Irving-Pease, E.K., Mühlemann, B., Holtsmark Nielsen, S., Scorrano, G. and Allentoft, M.E., 2025. The spatiotemporal distribution of human pathogens in ancient Eurasia. Nature, 643(8073), pp.1011-1019.
Energy Jakhmola, A., Jewell, J., Vinichenko, V. et al.2026. Probabilistic projections of global wind and solar power growth based on historical national experience. Nature Energy. https://doi.org/10.1038/s41560-026-02021-w
Sustainability Sun, X., Tian, L., Fang, H., Walling, D.E., Huang, L., Park, E., Li, D., Zheng, C. and Feng, L., 2025. Changes in global fluvial sediment concentrations and fluxes between 1985 and 2020. Nature Sustainability, 8(2), pp.142-151.
Paleoclimatology Lu, F., Lu, H., Gu, Y., Lin, P., Lu, Z., Zhang, Q., Zhang, H., Yang, F., Dong, X., Yi, S. and Chen, D., 2025. Tipping point-induced abrupt shifts in East Asian hydroclimate since the Last Glacial Maximum. Nature Communications, 16(1), p.477.
Biogeochemistry Sun, X., Tian, L., Fang, H., Walling, D.E., Syvitski, J., Huang, L., Li, D., Zheng, C. and Feng, L., 2026. Mapping pan-Arctic riverine particulate organic carbon from space (1985 to 2022). Science Advances, 12(3), p.eady6314.
Global Ecology Guo, R., Wu, X., Wang, P., Chen, T., Chen, X., Cai, J., Wang, X., Zhang, Z., Meng, Z. and Liu, Y., 2026. Increased spread of global flash droughts threatens vegetation productivity resilience. Nature Communications.
Paleoceanography Rahaman, W., Gutjahr, M. and Prabhat, P., 2025. Late Pliocene growth of the West Antarctic Ice Sheet to near-modern configuration. Nature Communications, 16(1), p.6705.
Zoology Meireles, J.P., Hahn-Klimroth, M., Lackey, L.B., van Eeuwijk, N., Bertelsen, M.F., Dressen, S., Dierkes, P.W., Abraham, A.J. and Clauss, M., 2026. Aging populations threaten conservation goals of zoos. Proceedings of the National Academy of Sciences, 123(5), p.e2522274123.
Medicial sciences Garcia-Aymerich, J., de Las Heras, M., Carsin, A.E., Accordini, S., Agustí, A., Bui, D., Dharmage, S.C., Dodd, J.W., Eze, I., Gehring, U. and Gislason, T., 2025. General population-based lung function trajectories over the life course: an accelerated cohort study. The Lancet Respiratory Medicine, 13(7), pp.611-622.
Climate Change Leclercq, L., Oelsmann, J., Cazenave, A., Passaro, M., Jevrejeva, S., Connors, S., Legeais, J.F., Birol, F. and Abarca-del-Rio, R., 2026. Abrupt trend change in global mean sea level and its components in the early 2010s. Communications Earth & Environment.
Communication Phillips, J.B., 2025. Exploring psyop-based conspiracy theories on social media. Information, Communication & Society, pp.1-20.
Applied Math Koutrouli, E., Manousopoulos, P., Theal, J. and Tresso, L., 2025. Crypto asset markets vs. financial markets: Event identification, latest insights and analyses. AppliedMath, 5(2), p.36.
Biosystems Engineering Mayrhuber, E., Maschat, K., Brunner, D., Winkler, S.M. and Oczak, M., 2026. Improved and interpretable accelerometer-based farrowing prediction. Biosystems Engineering, 263, p.104381.
Finance Li, S., Mishra, T. and Yarovaya, L., 2026. Heterogeneous Market Efficiency in Cryptocurrency Markets: A Multi‐Frequency Memory‐Based Approach. International Journal of Finance & Economics.
Economics Lakštutienė, A., Sutiene, K., Kabasinskas, A., Malakauskas, A. and Kopa, M., 2025. Sustaining in Uncertain Time: Investigating Pension Fund Performance during Market Stress. Engineering Economics, 36(1), pp.96-112.
Reliability Engineering Zhou, Y., Liu, S., Kou, G. and Kang, F., 2025. Degradation variation pattern mining based on BEAST time series decomposition integrated functional principal component analysis. Reliability Engineering & System Safety, 259, p.110952.
Biology Bancaud, A., Nakajima, T., Suehiro, J.I., Alric, B., Morfoisse, F., Cacheux, J. and Matsunaga, Y.T., 2025. Intraluminal pressure triggers a rapid and persistent reinforcement of endothelial barriers. Lab on a Chip, 25(8), pp.2061-2072.
Construction Engineering Li, F., Xie, Z., Yu, X. and Shi, B., 2025. Estimation of long-term variation patterns in the modal properties of a skyscraper under environmental effects. Engineering Structures, 336, p.120451.
Animal Ecology Hole, G.M., Büntgen, U., Wang, Y., DeVries, B., Rees, G. and Wheeler, H.C., 2026. Dendrochronology and remote sensing reveal beaver occupancy and colonization dynamics in an expanding Arctic population. Ecosphere, 17(3), p.e70557.
Wildlife Pérez-Mellado, V. and Pérez-Cembranos, A., 2025. Effects of the introduction of an herbivore on an endangered lizard. European Journal of Wildlife Research, 71(3), p.47.
Coastal & Estuary science Richey, A., Oberbauer, S.F., Castaneda-Moya, E., Troxler, T., Kominoski, J.S., Olivas, P. and Malone, S.L., 2025. Sea-level rise and freshwater management are reshaping coastal landscapes. Journal of Environmental Management, 387, p.125842.
Civil Engineering Englezou, Y., Timotheou, S. and Panayiotou, C.G., 2025. Fault-adaptive traffic demand estimation using network flow dynamics. IEEE Transactions on Intelligent Transportation Systems.
Computational Chemistry Faran, M. and Bisker, G., 2025. Coarse-graining self-assembly by the stochastic landscape method. Journal of Chemical Theory and Computation, 21(21), pp.10719-10734.
Education Huang, X., Wu, H., Liu, X. and Lajoie, S.P., 2025, July. What makes teamwork work? A multimodal case study on emotions and diagnostic expertise in an intelligent tutoring system. In International Conference on Artificial Intelligence in Education (pp. 44-52). Cham: Springer Nature Switzerland.
Agrometerology Ssembajwe, R., Mulinde, C., Ddumba, S.D., Kagezi, G.H., Opio, R., Kobusinge, J., Mugagga, F., Bamutaze, Y., Gidudu, A., Arinaitwe, G. and Voda, M., 2025. Dynamics and associations of selected agrometeorological variables in Robusta growing regions of Uganda. Agricultural Water Management, 307, p.109257.
Health Care Ünal, E. and Yılmaz, S., 2025, March. Healthcare Sector Dynamics in Turkey (2002–2022): Trends, Breakpoints, and Policy Implications (Privatization in the Hospital Sector). In Healthcare (Vol. 13, No. 6, p. 622). MDPI.
Rock Engineering Long, S., Yue, Z., Yue, W.V., Hu, H., Feng, Y., Yan, Y. and Xie, X., 2025. Identification of rock layer interface characteristics using drilling parameters. Rock Mechanics and Rock Engineering, 58(1), pp.1071-1098.
Energy Leiria, D., Johra, H., Anoruo, J., Praulins, I., Piscitelli, M.S., Capozzoli, A., Marszal-Pomianowska, A. and Pomianowski, M.Z., 2025. Is it returning too hot? Time series segmentation and feature clustering of end-user substation faults in district heating systems. Applied Energy, 381, p.125122.
Psychology Huang, X., Nguyen, A. and Lajoie, S.P., 2025. Examining socially shared regulation of learning in medical training: the interplay of heart rate change points on regulatory interactions: Huang et al. European Journal of Psychology of Education, 40(3), p.93.
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.24.tar.gz (742.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rbeast-0.1.24-cp314-cp314-win_amd64.whl (534.2 kB view details)

Uploaded CPython 3.14Windows x86-64

rbeast-0.1.24-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rbeast-0.1.24-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

rbeast-0.1.24-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rbeast-0.1.24-cp314-cp314-macosx_11_0_arm64.whl (526.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rbeast-0.1.24-cp314-cp314-macosx_10_15_x86_64.whl (610.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

rbeast-0.1.24-cp313-cp313-win_amd64.whl (526.4 kB view details)

Uploaded CPython 3.13Windows x86-64

rbeast-0.1.24-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rbeast-0.1.24-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

rbeast-0.1.24-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rbeast-0.1.24-cp313-cp313-macosx_11_0_arm64.whl (526.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rbeast-0.1.24-cp313-cp313-macosx_10_13_x86_64.whl (610.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rbeast-0.1.24-cp312-cp312-win_amd64.whl (526.4 kB view details)

Uploaded CPython 3.12Windows x86-64

rbeast-0.1.24-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rbeast-0.1.24-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

rbeast-0.1.24-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rbeast-0.1.24-cp312-cp312-macosx_11_0_arm64.whl (526.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rbeast-0.1.24-cp312-cp312-macosx_10_13_x86_64.whl (610.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rbeast-0.1.24-cp311-cp311-win_amd64.whl (526.3 kB view details)

Uploaded CPython 3.11Windows x86-64

rbeast-0.1.24-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rbeast-0.1.24-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

rbeast-0.1.24-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rbeast-0.1.24-cp311-cp311-macosx_11_0_arm64.whl (526.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rbeast-0.1.24-cp311-cp311-macosx_10_9_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rbeast-0.1.24-cp310-cp310-win_amd64.whl (526.3 kB view details)

Uploaded CPython 3.10Windows x86-64

rbeast-0.1.24-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rbeast-0.1.24-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

rbeast-0.1.24-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rbeast-0.1.24-cp310-cp310-macosx_11_0_arm64.whl (526.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rbeast-0.1.24-cp310-cp310-macosx_10_9_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rbeast-0.1.24-cp39-cp39-win_amd64.whl (526.5 kB view details)

Uploaded CPython 3.9Windows x86-64

rbeast-0.1.24-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rbeast-0.1.24-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

rbeast-0.1.24-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rbeast-0.1.24-cp39-cp39-macosx_11_0_arm64.whl (526.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rbeast-0.1.24-cp39-cp39-macosx_10_9_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

rbeast-0.1.24-cp38-cp38-win_amd64.whl (526.4 kB view details)

Uploaded CPython 3.8Windows x86-64

rbeast-0.1.24-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

rbeast-0.1.24-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rbeast-0.1.24-cp38-cp38-macosx_11_0_arm64.whl (526.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rbeast-0.1.24-cp38-cp38-macosx_10_9_x86_64.whl (609.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

rbeast-0.1.24-cp37-cp37m-win_amd64.whl (526.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

File details

Details for the file rbeast-0.1.24.tar.gz.

File metadata

  • Download URL: rbeast-0.1.24.tar.gz
  • Upload date:
  • Size: 742.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24.tar.gz
Algorithm Hash digest
SHA256 5946a35f55051ada3d1363759f58f5e599630b750bc6a67d86d7fed0bf7665fb
MD5 7a57a6505bd87155cf412f9ecc9fdc49
BLAKE2b-256 1075ac0acdfc95437a50648939756b796ae4eb16f3192becbd6a5cf040e66c4c

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 534.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aafcbc1fda883b45966b643d704ccd4098845ffb171312d6b2d3fe934a4482cc
MD5 ae21ff65b23a2c256b2ab24c1829067c
BLAKE2b-256 96d6dcfb13f7ecfece47160f904fce14e4d1632d367ea544f3e2ff5c10973599

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eba7c9124bb4dd2d752ba8261053c0a51f1552f61ced6897e3995841175dcbbf
MD5 3d94e12d7824106876c3ed2c9f152d73
BLAKE2b-256 1ab33bf63fc142c0014a5389851b79b5fb8b911f4f3292f63b382fd3de234fac

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 208340e7eafedb226759fe8c6e390c79238771145af6471e36afb45d77ea19f0
MD5 bcf3fa2a81934624452a82b08ba5ca15
BLAKE2b-256 c08fe45c5270a3c9a4e82b191f4548ea3a7c6c6717181ffd9e2a3f7903b232b6

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c8cb2c07b06b61822a850bfa561e2a819c798d4b20028c0ba2f142a149c809ce
MD5 a49040a054beb4473290ac86a81e3498
BLAKE2b-256 efbca79991fb1f335a921cd5576bd75d43b05490430612d2611b72e48276edd3

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b79f43b4ce1d89ac65de1746070a21eddb601c76ce98e5f404db1ced5e3cbd41
MD5 be108a8656d674015f1cddcb0d0c4c7e
BLAKE2b-256 0a1e54d89fafbc68263b7075f5482c60e1a9327a2b547db51194acca1fafba3e

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b28ca5525c05407b8eee8c8c1125d11317344922e1bb868abdc924439dfa6625
MD5 45d0446a67fdb8e4595e22cb9aa84f76
BLAKE2b-256 d1d4c3895468c1e62c97da5cc2a8a8943f4799fabae795f42c8f07680da7d110

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 526.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 49c291989a0b5f9a9e6ac48b2c0b620cd46ea74b96f5acfd25078e678c388079
MD5 457c13c163fdd6d48af28e3b0e04adb3
BLAKE2b-256 f392bf2c88fdf1aceaa5eaf187bbfe2c3c3f0855bf34e11e31dfe915623d4e97

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49a3a30df643fa8cd28e549e530cd42affcae91f5270b6dd41a262b96d3be94f
MD5 ce118f298e41f9b299ce0625a1ee5e85
BLAKE2b-256 68fd89e5d3340e23e78a4337d8bd3fc1b521c8aee254bb6c1f78b941da9f53ea

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbc6183213baf02cccc489b499316d0843a67abbaaa34182f3c81f2aff8e0299
MD5 5883506f6a108dcc7397c89975a14c79
BLAKE2b-256 4a34d53b62ab38349057463125708e9a81222d8837c58f59546286e981ad6dd8

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 26a6aa5b3a1b6f5802af31772d9d05527940692cc60f6d8c28da006bb19d719e
MD5 7db788f8000cf1d6d78bf2bf13855782
BLAKE2b-256 32bec441fa9b92ab1b7e39f6893bcbd406fded3a99e4d31fd329715fd67695f3

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9ea5293e16d55ae4765f5a70c2ca6f040317670f6f9cf180e26732d998fd906
MD5 8caae9b3fe8e6239f3004d4018cebbd4
BLAKE2b-256 43f37aa426a2db34e182b673f6596d7c0659202f300cfaea2be129e5738e78e4

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de6321d56eab917e70c925fbe43992f1317d89c08b9eea517ac45be042fc63a6
MD5 b29e47600335ed06475ae33a05e51537
BLAKE2b-256 f875f3aee2cb3f205bde569f91764d3ddc4c5c223f6921049c1a787713b9f5b9

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 526.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bfa310b2cca7fcf07b018c8ebe61e4499b8238efdc3e9d97793384c29877c9fb
MD5 46b3376214991775d59c02ae6851a142
BLAKE2b-256 6b8bce03cdc810c6f9893cb4f3bfde349a5fcbdc126b2a7aa592d6266a3f95ca

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3b2c7c665727740c6a395cffd2cd66f7b69fd7cc08cb5e901b52a700928b413
MD5 0b7fae0004b5e46edf38df76dcf631d0
BLAKE2b-256 32cd0fc2897323f352a2f4d2b899c9c9853b7daaf97de523baf433efdc9eac6b

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0cace86bab3c429f21b661fae2d414aab6cebad8a7615403c074abad0921f9f
MD5 11bad7e9fc5dade4393c6a9cf9e9a15e
BLAKE2b-256 18b6e55caacf6652231b1d81563c343c8231fb10d97c6c21cf002a462ce41d59

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a4c556e4d0b21b136dc6f625c64be8bad4f81cba4ddc03c324682003da8c2a0b
MD5 f2c17928bf89270cf3efef26418170b3
BLAKE2b-256 23dd4dd20d55ac60f03d43a601c9738883976674fda8b57c6fd774f42985d6fe

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c79a2a82de16f6cdae5c23be4fdc5568e61714cf095e13cadbae2e1e16f2a94c
MD5 77fb382f8eaa8d2fd93a795ab8be8ebe
BLAKE2b-256 ac98eb4af60009c4fe394b5e6225ffd6ca299baddd6005cc77dcd5dfb25231a3

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 361c3ce833963fbe3d7639b236bd19694d1a24746b6c06c5b0f89cc1293d8403
MD5 918c5f31ee9c3a9bbe0f49037a3ee696
BLAKE2b-256 4ec6e79b62d98b7e8a22f6442909c100fbf2d9e0dbae6dd2eb9b5b1da34b9f4a

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 526.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 69361ed278b4045116fd2090a27fef657a0aefc20684a75283e30b240516d86d
MD5 c6c88ca64654a073eda1a365590b40c0
BLAKE2b-256 3e74d10cbd62bdd02b54354f395ad91ccf599847a1869180477435f03000e9b7

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9cffd5a6f2f698c34d2515510d3d829ec695f925448b844c35b12c6a5c7f2d7
MD5 9e053060c0b7289173836ee66d7e8d17
BLAKE2b-256 4862448675765d03dc3ec4891b7f14605118bae09eeb0d917c1b7bf06d56d9ab

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c03aa99f3069e458394e6f5b77392dd8f93af06bbe398b0fb122d2bfdbdd008d
MD5 92299f35850271fba6b21947a2dcb6bc
BLAKE2b-256 201be8f526d3b6dc1bb407e368c45474b5201eb5bfcbc42521260f2e59897270

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 310004fb9cf916e731e91b37ab4f40f87088b3dc1ab6ccb6afca33632b8b71ea
MD5 21be6dbf17b28c3cd94dc6b11f6a6b60
BLAKE2b-256 469c2e9bd5ce6de54833f74efa14b1dcc3228aecd170e7080a8bb84cb739df10

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34613d27211b87012de7096c8b70eb09d3ab872e0a715482c1029fcd17effd41
MD5 67a6b22e4d31b7027f167e79abaf6b19
BLAKE2b-256 993fd1e1eeec1980071b2a7d6e9463969f04ee28bacfb22cb26b4e573dc7c3ea

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3790003ffb8f287b350e444c9dce785f40871780e7d2642ec1c134f1e9a60509
MD5 df763f018e7f5071f8618a6fee3ddda3
BLAKE2b-256 c315609fd8e622e5d2c362b5447c224d3478c1874f617d4a23aca0637da9d3ef

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 526.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bbdf2ef949971e346ec305ffdfe62d8b1e355a4dce13791eac4b02debe0f4146
MD5 0ac39db846ef884daae85973eda44b4d
BLAKE2b-256 f39f5b843d49ad695c9b06bc0402c579e6c75ad8814d8c5d61942a833fa49c0a

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 982b646e864756e64da8be16db4cca728f01d56b5b0238e2fbe75b1870377de9
MD5 859375a57f620959f623526406bd82d9
BLAKE2b-256 c23aba92dc1cd77573a356eba0271ffa706b9ed095b90efa80b9b2dd3f852af0

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5960cb9b3f8c68500d7c12833bb441789da22caff50f3cf2095c9846f037fac4
MD5 3fda7f5b665643cac174800f1376f551
BLAKE2b-256 41d11ca9179e7ae16cbca30edc60c3f7a4a8b701eddfb12be52aede39e18474f

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1c4eb6a91b8614e89acd38755fffd1f404ea68c62c8776c7b72f1c70807afc10
MD5 578938458afb085df33fabf49eb102e3
BLAKE2b-256 b206c87b73314b74bc0bc71e0c3ce37df34ae8696fef01e9c684fad36e8cfba6

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d88bda39d7742858774809e4852e1cc04c2b28b15b37531f9ba3be0a2264b5f
MD5 4283fbe68191aa6b0275c387270aa4a4
BLAKE2b-256 f180f55ca9bf1410af886fd23f4b583d26038f6bdf1151ec61d4de5b1effb9ea

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 082f9ae6b51d305395b413f32e5e965c16a43b5646b734cfe54db1c0dfa1dbc1
MD5 7edeec7d28bb17762df0627dbd14cf4c
BLAKE2b-256 1cb4746af172e79b4dc73976de63840a2105c36bd9d7e208e1ec85ec5181ff18

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 526.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f782b349fdf90a85da3db82ad60cd1d5e0a50f23b2f0fc8216d1cf7f3ee9fc33
MD5 d0bc190f8c71867861f04782e6d608ec
BLAKE2b-256 40fb455d84513afcf9e8140674520e6f329c3f740f328af9847a6e198a74105a

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 478a1a4f4897cef7016201ff04448b8a721c3ec43ee15245e1b64d15cfb0d2bf
MD5 f5ce2aac9922aed6c93a1433c246e946
BLAKE2b-256 178118586d95d8674e8305fad88d39f2d98a026a87edd79a7d7c9f533ba08854

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7de97c9e68b61fc2dbf73062ef7a7dee41af86e95d29b8d68e060dca69cdd3ff
MD5 04a6f1d0a5b3bd91dfceccb8e0857a97
BLAKE2b-256 47c0d171728066b25d12ba5d347a0ecb79323c7b4d23d0d3873c3a2c781bff33

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 46f1d7abe2698ac596b9d25884fb65ef935647e175dc96e32b3af8bb375721be
MD5 05c7148075cab0cb835b97faa47df066
BLAKE2b-256 c6dc11adbeb8cc2e593b0672a186fb56cc78ee8083e2796fc1c134feb2c6027c

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb1afe1a33ae2ac8916c7534d4a0973df2ac6ca941627b0ba9a9133504a4796e
MD5 475877e9ab7d8aac450f93fbf1ccae9a
BLAKE2b-256 591d668b697530985d7e2a7f99bfb46ef9d5fdd5ddc7fe2f60da3938a527046d

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2404adbc895c55e15183c0feca082dbbe339c6565d1d3f5714e78f8865d62af2
MD5 19237dbb818a27181044f7d14df157f3
BLAKE2b-256 2f5160b8af1fcf155748ec1ad66ed69fe5c54e0f441e24043a02a35c3f8c5298

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 526.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 876b0c7fe775024630af019893434f31ea4312e8a28e66b80af6ed877752a5c8
MD5 e0564578a827ba85aeb97dd69deeaed3
BLAKE2b-256 769e119259e4e1e36db70dfab319a00d93fafb365096ceb55f6b489d383559d3

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 895c18d66e62a0f6003f3df82fb35614113fc5f0057800c9c52268b0adf1ad36
MD5 62899d804035444de5d2f953e16583ae
BLAKE2b-256 03635aec530ace185a5084236c158599f86a1519b8f8353019daee88855d0dd3

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c8ad96a8d48286eef8b1fb53504b54ab036e2e1a464d056c6324d1a7c546ea06
MD5 71df4722cf83dd256ee3ed2251d71eae
BLAKE2b-256 e2c01a1f428de8040458b18c12946aea977bfea7832d89700505a67422c6239b

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fc063f3631c5896938c9110062cbc81f354544cb5edb76f16d41da442fc49bb
MD5 21cb5b379e6e9eaac8714ca21d14ba2c
BLAKE2b-256 5c71c101fe4755dd33950f9ceb24de53b05a1e19160d3a52d41391dfae50b663

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rbeast-0.1.24-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94dfc53e47cc0fd85230f3b524f460cc4e52217c2e4ff382bfb21b8e2b128973
MD5 f5131d1d68a958abb138abeae4c8927b
BLAKE2b-256 fb6571a8b835254c1eed0332df470599ee3567029d8d5fd72be48fd5035c3979

See more details on using hashes here.

File details

Details for the file rbeast-0.1.24-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: rbeast-0.1.24-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 526.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rbeast-0.1.24-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8b151fa79e8771d97dca19461d760437f7dbc17c8ab33e2efe7240142c74c43a
MD5 5edfb01a095848a76cd611cee651b412
BLAKE2b-256 38380cded2550b04688c355bccbd513b616f61912bf6d5286885044de95cd1cd

See more details on using hashes here.

Supported by

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