Skip to main content

Read and analyse continuous glucose monitoring data

Project description

Glyco - Analysing Continuous Glucose Data in Python

|   Overview   | Examples |

Glyco is a glucose data analysis Python library for glucose data analysis.

  • Easy to setup: you can get started with glyco very fast. You can checkout the Get started notebook for more.

  • Easy to integrate: if you already have a workflow where you analyse glucose data. Glyco applies methods to pandas DataFrames, making it easy to integrate.

  • Targeted for all kinds of glucose data: Glyco even handles glucose data for healthy individuals. Most of the metrics in CGM data are built based on CGM data for people with diabetes. This renders a lot of them useless when performing data analysis on healthy individuals (such as comparing the impact of meals and activities). Glyco has features to handle all types of glucose data, from all types of devices.

Quick Example:

import glyco as gl
# Read glucose file
df = gl.read_csv('examples/sample_glucose.csv')
# Plot glucose hourly trend
gl.plot_trend_by_hour(df)

image

The easiest library to manipulate glucose data

Glyco does not add any more complexity.

If you are familiar with pandas dataframes, glyco makes use of pandas dataframe and does not introduce any new concepts or abstractions.

This makes it easy to use and integrate with your current workflows. Reading your glucose file into a dataframe in glyco is as easy as:

import glyco as gl

glucose = gl.read_csv(file_path='my_glucose_data.csv')

This returns a glucose dataframe, takes care of: pre-processing the timestamps and dates, cleaning missing data, making the curve smoother and converting units.

What you can do with Glyco

Glyco provides a range of features for handling continuous glucose data, as shown in the figure below: image image

  1. Read and Write glucose data Glyco handles data from different sources including CSV files (such as FreeStyleLibre or DexCom) and dataframes, and using this data is as simple as:

    glucose = gl.read_csv(file_path='my_glucose_data.csv')
    

    You can find more in the glucose documentation.

  2. Clean and Process glucose data you do not need to worry about missing values, errors and outliers. Glyco handles different types of cleaning and processing, so you can focus on analysing the data.

  3. Plotting and visual analysis (EDA) to easily explore glucose data, and aid you in understanding patterns and trends.

    gl.plot_glucose(glucose) # Where 'glucose' is the dataframe containing glucose
    gl.plot_trend_by_weekday(glucose)
    gl.plot_trend_by_hour(glucose)
    
  4. Calculate metrics and statistics for each day, or week. These metrics are targeted for analysing healthy individual data (not diagnosed with diabetes). These metrics range from general statistics (mean, percentiles etc.) to more advanced metrics (area under the curve for a day). And it's as simple as:

    # get metrics for each day
    day_metrics = gl.get_metrics_by_day(glucose)
    day_metrics = gl.get_metrics_by_day(glucose)
    

    Which results in a dataframe containing metrics such as: mean glucose, maximum glucose, standard deviation, area under the curve and more. To learn more about metrics, feel free to look at the metrics documentation.

Most inputs and outputs in Glyco are pandas dataframes. This means that you can use features of pandas on along with the ones provided by glyco.

More things you can do with glyco

Glyco can also aid you in more advanced tasks such as detecting meals, comparing the impact of different meals or activities or any type of event. image image

  1. Automatically infer Meals, or activities, or other events that impact glucose.
    # you can detect events from variations in glucose
    events = gl.get_events_from_variations(glucose)
    
    Different methods are used for infering events. More on this in the meals and events documentation.
  2. Provide events and match them to the glucose data and analyse them to see how they impact glucose.
    # you can provide a list or dataframe that contains the event times
    events = gl.get_events(event_times)
    
    You can even get the events from a folder of pictures. More on this in the meals and events documentation).
  3. Advanced analysis of events, including metrics for meals or events and how they impact glucose. As well as ranking meals and more, to further aid in understanding the glucose data.

Limitations

  • The metric calculations for days assumes the device timezone is the user's timezone.

Disclaimer Glyco is not a medical product and shall not be used to diagnose, treat or evaluate any medical conditions. For more on the intended use and indications of use please read the healthcare considerations document.

Built on the shoulders of giants

Glyco is built using the following libraries:

  • Pandas and Numpy.
  • Matplotlib and Seaborn.
  • Rich for beautiful text displays.

Contact the author here

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

glyco-0.0.1rc1.tar.gz (24.9 kB view details)

Uploaded Source

Built Distribution

glyco-0.0.1rc1-py3-none-any.whl (23.8 kB view details)

Uploaded Python 3

File details

Details for the file glyco-0.0.1rc1.tar.gz.

File metadata

  • Download URL: glyco-0.0.1rc1.tar.gz
  • Upload date:
  • Size: 24.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.9

File hashes

Hashes for glyco-0.0.1rc1.tar.gz
Algorithm Hash digest
SHA256 aaf9f75bbf3acba4dff023b388de6e6c53426fbbb4bd092a2e326a206d67e54e
MD5 a2a98b3283423a60e07a84936f98be20
BLAKE2b-256 40383f263df888a93209513a9f33abe62d2d8aa6a16ba9174c822b92d6e7340a

See more details on using hashes here.

File details

Details for the file glyco-0.0.1rc1-py3-none-any.whl.

File metadata

  • Download URL: glyco-0.0.1rc1-py3-none-any.whl
  • Upload date:
  • Size: 23.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.9

File hashes

Hashes for glyco-0.0.1rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 3aef0438d37c51ba0690e7438f18a4b459c3f7e640259230516c916eb252b24d
MD5 7a6c052fed833cf35fbdf7b424f3c369
BLAKE2b-256 916648d2947b1a5a8c3b377554b500afec53af44a56726c88f737517736135ef

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