def calculate_phases_score(aneurysm_size, age, hypertension, smoking): score = 0 # Calcola il punteggio in base alla dimensione dell'aneurisma if aneurysm_size <= 7: score += 1 elif aneurysm_size <= 15: score += 2 else: score += 3 # Calcola il punteggio in base all'età if age <= 60: score += 1 else: score += 2 # Calcola il punteggio in base all'ipertensione if hypertension: score += 2 # Calcola il punteggio in base al fumo if smoking: score += 3 return score # Esempio di utilizzo phases_score = calculate_phases_score(10, 65, True, True) print("Il phases score è:", phases_score) SSS stenting – Lab Neurovascolare

A pilot study and novel angiographic classification for superior sagittal sinus stenting in patients with non-thrombotic intracranial venous occlusive disease

Raper DM, Buell TJ, Ding D, Pomeraniec IJ, Crowley RW, Liu KC. Key points: The majority of stenosis of an intracranial dural sinus, cause of intracranial hypertension (IIH) or chronic headache without IIH, involve the transverse (TS) and sigmoid (SS) sinuses. However, a subset of patients with intracranial venous occlusive disease (VOD) has SSS stenosis with Read more about A pilot study and novel angiographic classification for superior sagittal sinus stenting in patients with non-thrombotic intracranial venous occlusive disease[…]