Utilize esta ferramenta para calcular o risco cardiovascular de um grande número de pessoas ao mesmo tempo. Ele calcula os riscos pelas equações de Framingham (global, doença coronária e AVC) e SCORE (global, doença coronária, doença não coronária).
Precisará de instalar um servidor Apache, PHP e MySQL. Se não sabe como fazê-lo, há vários vídeos de ajuda no Youtube. Será mais fácil se instalar também o phpMyAdmin (Youtube).
CREATE TABLE IF NOT EXISTS `dados` ( `ID` tinyint(3) unsigned NOT NULL, `Sexo` tinyint(1) unsigned NOT NULL, `Idade` tinyint(2) unsigned NOT NULL, `Colesterol_Total` smallint(3) unsigned NOT NULL, `Colesterol_HDL` tinyint(2) unsigned NOT NULL, `PA_Sistolica` smallint(3) unsigned NOT NULL, `PA_Diastolica` smallint(3) unsigned NOT NULL, `PA_Tratada` tinyint(1) unsigned NOT NULL, `Peso` float(6,3) unsigned NOT NULL, `Altura` tinyint(3) unsigned NOT NULL, `Diabetes` tinyint(1) unsigned NOT NULL, `Fumador` tinyint(1) unsigned NOT NULL, `DCV` tinyint(1) unsigned NOT NULL, `FA` tinyint(1) unsigned NOT NULL, `HVE` tinyint(1) unsigned NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
CREATE TABLE IF NOT EXISTS `risco` ( `ID` tinyint(3) unsigned NOT NULL, `F_global` float(3,1) unsigned NOT NULL, `F_cor` float(3,1) unsigned NOT NULL, `F_cor_med` float(3,1) unsigned NOT NULL, `F_cor_ideal` float(3,1) unsigned NOT NULL, `F_AVC` float(3,1) unsigned NOT NULL, `S_global` float(3,1) unsigned NOT NULL, `S_cor` float(3,1) unsigned NOT NULL, `S_ncor` float(3,1) unsigned NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
Se utilizar esta ferramenta por favor cite-a: Pinto D. Calculador de risco cardiovascular 1.0 [programa de computador]. Julho 2012. Disponível em: http://danielpinto.net/ferramentas/risco_cv/batch.html
Framingham global:
D'Agostino RB Sr, Vasan RS, Pencina MJ, Wolf PA, Cobain M, Massaro JM, Kannel WB. General cardiovascular risk profile for use in primary care: the Framingham Heart Study. Circulation. 2008 Feb 12;117(6):743-53. [Pubmed]
Framingham - risco coronário:
Wilson PW, D'Agostino RB, Levy D, Belanger AM, Silbershatz H, Kannel WB. Prediction of coronary heart disease using risk factor categories. Circulation. 1998 May 12;97(18):1837-47. [Pubmed]
Framingham - risco de AVC:
D'Agostino RB, Wolf PA, Belanger AJ, Kannel WB. Stroke risk profile: adjustment for antihypertensive medication. The Framingham Study. Stroke. 1994 Jan;25(1):40-3. [Pubmed]
SCORE:
Conroy RM, Pyörälä K, Fitzgerald AP, Sans S, Menotti A, De Backer G, De Bacquer D, Ducimetière P, Jousilahti P, Keil U, Njølstad I, Oganov RG, Thomsen T, Tunstall-Pedoe H, Tverdal A, Wedel H, Whincup P, Wilhelmsen L, Graham IM; SCORE project group. Estimation of ten-year risk of fatal cardiovascular disease in Europe: the SCORE project. Eur Heart J. 2003 Jun;24(11):987-1003. [Pubmed]
Daniel Pinto | Departamento de Medicina Geral e Familiar - Faculdade de Ciências Médicas - Universidade Nova de Lisboa