Posts

import matplotlib.pyplot as plt import pymc3 as pm import aesara.tensor as at import arviz as az import scipy.stats as st import numpy as np az.style.use('arviz-whitegrid') Multivariate bernoulli distribution Sources https://doi.org/10.1016/0047-259X(90)90084-U https://arxiv.org/pdf/1206.1874 Motivation I have recently been introduced to Bayesian framework for statistical analysis with PyMC3 package for Probabilistic Programming in Python 3. I came across to a data given to me by my friend, which had multiple columns of binary data (responses to various questions with answers in binary format, yes or no).

CONTINUE READING

Background While going through the literatures, I came across two landmark articles on the evolution of Monoclonal Gammopathy of Unknown Significance (MGUS) and Smoldering Multiple Myeloma (SMM) by the Mayo Clinic Group headed by Dr Robert Kyle. These articles described the evolution of MGUS and SMM into symptomatic myeloma by reporting cumulative proportion of developing symptomatic myeloma in a population based follow up study. The following figure depicts the progression of MGUS into symptomatic myeloma

CONTINUE READING

Introduction Sample size calculation is an integral part in the inferential statistics, in which we are estimating a population parameter (our interest) from a sample statistic (data available to us). We carry out experiment on a finite numbered sample and calculate a summary measure out of it (sample statistic, lets say, sample mean) with an intent to estimate the unknown population parameter (population mean). The basic premise of statistical estimation is that as the sample size increases, the sample statistic will be reflecting the population parameter more accurately (its variation will be less around the population parameter).

CONTINUE READING

Introduction Practicing Evidence Based Medicine (EBM) has become the norm in Clinical Medicine for past few decades. Generating evidences by carrying out and publishing clinical research of various types (clinical trials, observational studies) have become a norm. It has been observed that around 80% of the clinical research findings and interpretations are not replicable, implicating that wrong clinical decisions are made based on the false findings. Major factors contributing to false results are biases created by researcher, editorial boards of journals and mis-interpretation of statistical terminologies.

CONTINUE READING

Study The study in question is the ALCYONE Trial, published in NEJM in 12 December 2017 by MarĂ­a-Victoria Mateos, Meletios A Dimopoulos, et al. The investigators studied the effect of adding Daratumumab with Bortezomib, Melphalan and Prednisolone in patients with freshly detected Myeloma ineligible for Autologous Bone Marrow Transplantation. The study arms were Arm 1: Daratumumab + Bortezomib + Melphalan + Prednisolone and Arm 2: Bortezomib + Melphalan + Prednisolone

CONTINUE READING

Introduction I was recently working on a PDF file with 60 odd pages and I had to crop the lower border of the pages. ImageMagick ImageMagick is GNU image editing program in Linux. Recently a package named magick has been created by rOpenSci. Steps of batch manipulation of PDF pages Loading PDF pages The PDF pages are loaded as vector of image object pdf <- image_read("path_file.pdf") We can access page i with

CONTINUE READING

Background Recently, I was presenting approach to Thrombotic Microangiopathy in hospital. I made the following notes, which I feel will be beneficial for the residents. Introduction TMA are of diverse etiologies but have unified manifestation a. MAHA (Coombs negative, increased LDH, schistocytes) b. Thrombocytopenia c. Organ injury (ischemic) TMA has unified pathogenesis a. Endothelial dysfunction b. Microinfarcts Approach to treatment a. Primary TMA syndromes (ADAMTS deficiency, HUS): treatment to be of the cause

CONTINUE READING