Ans these According to the psm 3rd yr mbbs
| T2DM Present | T2DM Absent | Total | |
|---|---|---|---|
| Positive | 180 (TP) | 380 (FP) | 560 |
| Negative | 20 (FN) | 3,420 (TN) | 3,440 |
| Total | 200 | 3,800 | 4,000 |
Solve these questions
ls -la /tmp/workspace/attachments/47a8c5f1-50ac-4b5e-97a1-d7409a2b3d1d/
cd /tmp/workspace/attachments/47a8c5f1-50ac-4b5e-97a1-d7409a2b3d1d/ && python3 -c " from PIL import Image import pillow_heif pillow_heif.register_heif_opener() img = Image.open('20260818_110401.heic') img.convert('RGB').save('converted.jpg', quality=95) print('done', img.size) "
pip install --user pillow-heif -q && cd /tmp/workspace/attachments/47a8c5f1-50ac-4b5e-97a1-d7409a2b3d1d/ && python3 -c " from PIL import Image import pillow_heif pillow_heif.register_heif_opener() img = Image.open('20260818_110401.heic') img.convert('RGB').save('converted.jpg', quality=95) print('done', img.size) "
pip install --user --force-reinstall --no-deps pillow-heif -q 2>&1 | tail -5; python3 -c "import pillow_heif" 2>&1
cd /tmp/workspace/attachments/47a8c5f1-50ac-4b5e-97a1-d7409a2b3d1d/ && python3 -c " from PIL import Image import pillow_heif pillow_heif.register_heif_opener() img = Image.open('20260818_110401.heic') img.convert('RGB').save('converted.jpg', quality=95) print('done', img.size) " ls -la
cd /tmp/workspace/attachments/47a8c5f1-50ac-4b5e-97a1-d7409a2b3d1d/ && python3 -c " from PIL import Image img = Image.open('converted.jpg') w,h = img.size scale = 1400/w img2 = img.resize((int(w*scale), int(h*scale))) img2.save('converted_small.jpg', quality=80) import os print(os.path.getsize('converted_small.jpg')) "
| Exposure | Developed Cancer | No Cancer | Total |
|---|---|---|---|
| Exposed | 100 | 4,900 | 5,000 |
| Non-exposed | 150 | 14,850 | 15,000 |