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) Anesthesia Technique and Outcomes of Mechanical Thrombectomy in Patients With Acute Ischemic Stroke. – Lab Neurovascolare

Anesthesia Technique and Outcomes of Mechanical Thrombectomy in Patients With Acute Ischemic Stroke.

Bekelis K1, Missios S2, MacKenzie TA2, Tjoumakaris S2, Jabbour P2.

 

Pubmed

BACKGROUND AND PURPOSE: The impact of anesthesia technique on the outcomes of mechanical thrombectomy for acute ischemic stroke remains an issue of debate. We investigated the association of general anesthesia with outcomes in patients undergoing mechanicalthrombectomy for ischemic stroke.

METHODS: We performed a cohort study involving patients undergoing mechanical thrombectomy for ischemic stroke from 2009 to 2013, who were registered in the New York Statewide Planning and Research Cooperative System database. An instrumental variable (hospital rate of general anesthesia) analysis was used to simulate the effects of randomization and investigate the association of anesthesiatechnique with case-fatality and length of stay.

RESULTS: Among 1174 patients, 441 (37.6%) underwent general anesthesia and 733 (62.4%) underwent conscious sedation. Using an instrumental variable analysis, we identified that general anesthesia was associated with a 6.4% increased case-fatality (95% confidence interval, 1.9%-11.0%) and 8.4 days longer length of stay (95% confidence interval, 2.9-14.0) in comparison to conscious sedation. This corresponded to 15 patients needing to be treated with conscious sedation to prevent 1 death. Our results were robust in sensitivity analysis with mixed effects regression and propensity score-adjusted regression models.

CONCLUSIONS: Using a comprehensive all-payer cohort of acute ischemic stroke patients undergoing mechanical thrombectomy in New York State, we identified an association of general anesthesia with increased case-fatality and length of stay. These considerations should be taken into account when standardizing acute stroke care.

doi: 10.1161/STROKEAHA.116.015343

Full text

© 2017 American Heart Association, Inc.

Leave a Reply