Skip to main content

Work with well plates!

Project description

Well Plate (well_plate)



PyPI downloads license

Makes nice visualizations of well plates!


Installation

pip install well_plate

Dependencies

numpy

pandas

plotly



Options

  • Well numbers

  • Well shape

    • 'circle'
    • 'rect' (square)
  • Add data

    • use wp.add_data(); pass in a pd.Series with the index corresponding to well plate index (eg. "A1", "E4", ...)


Example

Basic example

    import well_plate

    wp = well_plate.WellPlate(24)
    wp.plot()

well_plate

Change well size

    import well_plate

    wp = well_plate.WellPlate(96, "rect")
    wp.plot()

well_plate

Add data

    import pandas as pd    
    import well_plate

    wp = well_plate.WellPlate(384, "rect")
    
    df = pd.read_csv("example1_data.csv", index_col=0)
    wp.add_data(df["mw_n"])
    
    wp.plot(key="mw_n")
    wp.heatmap(key="mw_n")

well_plate well_plate

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

well_plate-0.0.4.tar.gz (8.6 kB view hashes)

Uploaded Source

Built Distribution

well_plate-0.0.4-py3-none-any.whl (8.8 kB view hashes)

Uploaded Python 3

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