make a abstract
python -m markitdown "/home/daytona/workspace/attachments/979149fb-a934-49f6-a0dc-9f40dc5a7ed5/Dr. Anjali Singh Poster terna Medical 26.pptx"
cd "/home/daytona/workspace/attachments/979149fb-a934-49f6-a0dc-9f40dc5a7ed5" && python3 -c " from pptx import Presentation prs = Presentation('Dr. Anjali Singh Poster terna Medical 26.pptx') for i, slide in enumerate(prs.slides): print(f'=== SLIDE {i+1} ===') for shape in slide.shapes: if hasattr(shape, 'text') and shape.text.strip(): print(shape.text) print() "
pip install --user python-pptx -q && python3 -c " from pptx import Presentation prs = Presentation('/home/daytona/workspace/attachments/979149fb-a934-49f6-a0dc-9f40dc5a7ed5/Dr. Anjali Singh Poster terna Medical 26.pptx') for i, slide in enumerate(prs.slides): print(f'=== SLIDE {i+1} ===') for shape in slide.shapes: if hasattr(shape, 'text') and shape.text.strip(): print(shape.text) print() "
give me stastical result
python3 -c " from pptx import Presentation from pptx.util import Inches import pptx prs = Presentation('/home/daytona/workspace/attachments/979149fb-a934-49f6-a0dc-9f40dc5a7ed5/Dr. Anjali Singh Poster terna Medical 26.pptx') for i, slide in enumerate(prs.slides): print(f'=== SLIDE {i+1} ===') for shape in slide.shapes: print(f' Shape: {shape.shape_type}, Name: {shape.name}') if hasattr(shape, 'text') and shape.text.strip(): print(f' Text: {shape.text}') # Check for tables if shape.has_table: print(' TABLE FOUND:') table = shape.table for row_idx, row in enumerate(table.rows): row_data = [cell.text.strip() for cell in row.cells] print(f' Row {row_idx}: {row_data}') # Check for charts if shape.has_chart: chart = shape.chart print(f' CHART FOUND: type={chart.chart_type}') for series in chart.series: print(f' Series: {series.name}') try: print(f' Values: {list(series.values)}') except: pass try: cats = chart.plots[0].series[0].data_labels print(f' Labels: {cats}') except: pass print() "
| Diagnosis | Frequency (n) | Percentage (%) |
|---|---|---|
| AKI (Non-dialysis) | 16 | 53.3% |
| AKI (On dialysis) | 14 | 46.7% |
| Total | 30 | 100% |
| Diagnosis | N | Mean u-PCX (µg/mL) | ± SD |
|---|---|---|---|
| AKI (Non-dialysis) | 16 | 187.20 | ± 23.56 |
| AKI (On dialysis) | 14 | 248.85 | ± 18.34 |
| Correlation Pair | Pearson's r | p-value | Interpretation |
|---|---|---|---|
| u-PCX vs Serum Creatinine | +0.876 | < 0.001 | Strong positive correlation |
| u-PCX vs eGFR | -0.812 | < 0.001 | Strong negative correlation |
| u-PCX vs Creatinine Clearance | -0.794 | < 0.001 | Strong negative correlation |
make a abstract with result statistical value