Forest plot for meta-analysis or sub-group analysis

버전 1.3.0.0 (7.07 KB) 작성자: Qi An
Plot a forest plot for meta-analysis or sub-group analysis
다운로드 수: 1K
업데이트 날짜: 2013/2/14

라이선스 보기

FORESTPLOT generates a forest plot to demonstrate the effects of a predictor in multiple subgroups or across multiple studies. A forest plot is a graphical display designed to illustrate the relative strength of treatment effects in multiple quantitative scientific studies addressing the same question.

forestplot(response, predictor, subgroup, 'ArgumentName',ArgumentValue)
response - a Nx1 binary vector, where N is the number patients, "1" means an event/disease happened on this patient, "0" means the opposite and "NaN" means unknown. When response is a NxM matrix, each column is associated with one study. Pad with "NaN" in the end if the patient sizes are different across studies.
preditor - a Nx1 binary vector, where "1" means this patient is exposed to this treament or is within desire predictor range (e.g. low dose), "0" mean the opposite and "NaN" means unknown. When response is a NxM matrix, each column is associated with one study.Pad with "NaN" if the patient sizes are different across studies.
subgroup - a NxM binary vector, where "1" means this patient belongs to this subgroup "0" mean the opposite and "NaN" means unknown.

Optional 'ArgumentName' includes:
subgroup_text - a 1xM cell vector of strings, where each strings is a description of one subgroup/study. For example, {'Group 1', 'Group 2', 'Group 3'} or {'Study 1', 'Study 2', 'Study 3'}
predictor_text - a 1x2 cell vector of strings, where the first string is the description of the non-treatment group and the second is for the treatment group. For example, {'Favor high dose', 'Favor low dose'}
limx - a 1x2 vector to specify the limits of x coordinate. The plot is in logarithm scale.
'stat' - the statistics (odds ratio or relative risk) used to generate the forest plot. (options = 'or', 'rr', default = 'or')

For example,
response=round(rand(100, 1));
preditor=round(rand(100, 1));
subgroup=round(rand(100, 3));
forestplot(response, preditor, subgroup, 'stat', 'rr');
plots a forest plot.

Developed under Matlab version 7.10.0.499 (R2010a)
Created by Qi An
anqi2000@gmail.com

인용 양식

Qi An (2024). Forest plot for meta-analysis or sub-group analysis (https://www.mathworks.com/matlabcentral/fileexchange/37227-forest-plot-for-meta-analysis-or-sub-group-analysis), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2012a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
도움

받음: Odds

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.3.0.0

Fixed a couple of bugs; simplified the input structure

1.2.0.0

minor code changes and description updates

1.1.0.0

description and requirement change

1.0.0.0