DABEST-python
DABEST-python copied to clipboard
Data Analysis with Bootstrapped ESTimation
We are frequently running into a problem that, for sensible looking datasets which are quantized but have large sample size, calculation of the median difference confidence interval fails in at...
Hi, Im running the code in jupyter lab (python) in order to produce gardiner-altman plots, but for some reason contrast_ylim does not set the y limits. Am I missing something,...
This is a proposed fix for #108 (deleted part about needing pandas v1.x+)
Tutorial page version 1 ccompleted
The error occurred while calling "two_groups_unpaired.cohens_d.plot" ImportError: cannot import name 'recode_for_categories' from 'pandas.core.arrays.categorical' (/Users/yinawei/opt/miniconda3/envs/py3/lib/python3.7/site-packages/pandas/core/arrays/categorical.py)
This is a proposed fix for #103 The issue seems that the `pivoted_plot_data` table contains columns for all `idx` pairs, but some `id` (rows) could only have data in some...
I've noticed DABEST does not let me work with dataframes where column names are not strings. example: ```python import dabest import pandas as pd import numpy as np from itertools...
Hi all, I've really enjoyed using this library but as I scale up to larger data sets I've fount that plotting takes _forever_. I suspect that this is largely due...
Could you provide me some more info on how color_col is supposed to work and how the data is supposed to be formatted? I think I'm doing things exactly like...
The following code should produce two plots, but only the swarm plot is produced, and an error is thrown. new_df = pd.read_csv('%s/all_ringrmsd_data_only.txt' % rootdir, sep='\t') s_control = db.load(new_df,idx=('OMEGA','MOE','Macromodel','Desmond','RDKit','Prime')) s_control.cohens_d s_control.mean_diff.plot(raw_marker_size=3)...