@manuscripts/transform 4.3.53 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/jats/__tests__/jats-roundtrip.test.js +3 -3
- package/dist/cjs/version.js +1 -1
- package/dist/es/jats/__tests__/jats-roundtrip.test.js +3 -3
- package/dist/es/version.js +1 -1
- package/dist/types/jats/__tests__/utils.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +22 -21
- package/src/errors.ts +28 -0
- package/src/getVersion.ts +21 -0
- package/src/index.ts +28 -0
- package/src/jats/__tests__/__fixtures__/debug-example.xml +136 -0
- package/src/jats/__tests__/__fixtures__/jats-abstract-no-body.xml +163 -0
- package/src/jats/__tests__/__fixtures__/jats-citations.xml +472 -0
- package/src/jats/__tests__/__fixtures__/jats-comments.xml +46 -0
- package/src/jats/__tests__/__fixtures__/jats-document.xml +134 -0
- package/src/jats/__tests__/__fixtures__/jats-example-doc.xml +1235 -0
- package/src/jats/__tests__/__fixtures__/jats-example-front-only.xml +26 -0
- package/src/jats/__tests__/__fixtures__/jats-example-full.xml +209 -0
- package/src/jats/__tests__/__fixtures__/jats-example-no-back.xml +156 -0
- package/src/jats/__tests__/__fixtures__/jats-example-no-body.xml +91 -0
- package/src/jats/__tests__/__fixtures__/jats-example.xml +221 -0
- package/src/jats/__tests__/__fixtures__/jats-fn-group.xml +60 -0
- package/src/jats/__tests__/__fixtures__/jats-import-no-refs.xml +1077 -0
- package/src/jats/__tests__/__fixtures__/jats-import.xml +1561 -0
- package/src/jats/__tests__/__fixtures__/jats-roundtrip.xml +133 -0
- package/src/jats/__tests__/__fixtures__/jats-tables-example.xml +2043 -0
- package/src/jats/__tests__/__fixtures__/math-fragment.xml +12 -0
- package/src/jats/__tests__/__snapshots__/citeproc.test.ts.snap +57 -0
- package/src/jats/__tests__/__snapshots__/create-article-node.test.ts.snap +65 -0
- package/src/jats/__tests__/__snapshots__/jats-exporter.test.ts.snap +7 -0
- package/src/jats/__tests__/__snapshots__/jats-importer.test.ts.snap +59605 -0
- package/src/jats/__tests__/__snapshots__/jats-roundtrip.test.ts.snap +18 -0
- package/src/jats/__tests__/citations.ts +25 -0
- package/src/jats/__tests__/citeproc.test.ts +195 -0
- package/src/jats/__tests__/create-article-node.test.ts +29 -0
- package/src/jats/__tests__/data/section-categories.ts +212 -0
- package/src/jats/__tests__/files.ts +24 -0
- package/src/jats/__tests__/jats-exporter.test.ts +223 -0
- package/src/jats/__tests__/jats-importer.test.ts +567 -0
- package/src/jats/__tests__/jats-roundtrip.test.ts +66 -0
- package/src/jats/__tests__/utils.ts +90 -0
- package/src/jats/exporter/citeproc.ts +265 -0
- package/src/jats/exporter/jats-exporter.ts +2090 -0
- package/src/jats/exporter/jats-versions.ts +50 -0
- package/src/jats/exporter/labels.ts +101 -0
- package/src/jats/importer/create-article-node.ts +52 -0
- package/src/jats/importer/jats-comments.ts +111 -0
- package/src/jats/importer/jats-dom-parser.ts +1260 -0
- package/src/jats/importer/jats-parser-utils.ts +234 -0
- package/src/jats/importer/jats-transformations.ts +591 -0
- package/src/jats/importer/parse-jats-article.ts +106 -0
- package/src/jats/index.ts +21 -0
- package/src/jats/types.ts +16 -0
- package/src/lib/__tests__/footnotes.test.ts +36 -0
- package/src/lib/citeproc.ts +30 -0
- package/src/lib/credit-roles.ts +91 -0
- package/src/lib/deafults.ts +17 -0
- package/src/lib/footnotes.ts +85 -0
- package/src/lib/html.ts +56 -0
- package/src/lib/section-categories.ts +27 -0
- package/src/lib/utils.ts +145 -0
- package/src/lib/xml.ts +28 -0
- package/src/schema/__tests__/docs.ts +1911 -0
- package/src/schema/__tests__/groups.test.ts +61 -0
- package/src/schema/__tests__/migration.test.ts +23 -0
- package/src/schema/groups.ts +36 -0
- package/src/schema/index.ts +286 -0
- package/src/schema/marks.ts +254 -0
- package/src/schema/migration/migrate.ts +77 -0
- package/src/schema/migration/migration-script.ts +26 -0
- package/src/schema/migration/migration-scripts/1.2.5.ts +44 -0
- package/src/schema/migration/migration-scripts/2.3.22.ts +52 -0
- package/src/schema/migration/migration-scripts/3.0.12.ts +33 -0
- package/src/schema/migration/migration-scripts/3.0.21.ts +50 -0
- package/src/schema/migration/migration-scripts/3.0.30.ts +65 -0
- package/src/schema/migration/migration-scripts/3.0.31.ts +40 -0
- package/src/schema/migration/migration-scripts/3.0.41.ts +37 -0
- package/src/schema/migration/migration-scripts/3.0.55.ts +42 -0
- package/src/schema/migration/migration-scripts/3.0.56.ts +114 -0
- package/src/schema/migration/migration-scripts/4.2.13.ts +37 -0
- package/src/schema/migration/migration-scripts/4.2.15.ts +48 -0
- package/src/schema/migration/migration-scripts/4.3.23.ts +55 -0
- package/src/schema/migration/migration-scripts/4.3.34.ts +132 -0
- package/src/schema/migration/migration-scripts/4.3.35.ts +41 -0
- package/src/schema/migration/migration-scripts/index.ts +49 -0
- package/src/schema/nodes/abstracts.ts +29 -0
- package/src/schema/nodes/affiliation.ts +88 -0
- package/src/schema/nodes/affiliations.ts +30 -0
- package/src/schema/nodes/alt_text.ts +36 -0
- package/src/schema/nodes/alt_title.ts +40 -0
- package/src/schema/nodes/alt_titles_section.ts +58 -0
- package/src/schema/nodes/attachment.ts +46 -0
- package/src/schema/nodes/attachments.ts +45 -0
- package/src/schema/nodes/attribution.ts +38 -0
- package/src/schema/nodes/author_notes.ts +44 -0
- package/src/schema/nodes/award.ts +52 -0
- package/src/schema/nodes/awards.ts +45 -0
- package/src/schema/nodes/backmatter.ts +31 -0
- package/src/schema/nodes/bibliography_element.ts +58 -0
- package/src/schema/nodes/bibliography_item.ts +108 -0
- package/src/schema/nodes/bibliography_section.ts +60 -0
- package/src/schema/nodes/blockquote_element.ts +79 -0
- package/src/schema/nodes/body.ts +29 -0
- package/src/schema/nodes/box_element.ts +67 -0
- package/src/schema/nodes/caption.ts +67 -0
- package/src/schema/nodes/caption_title.ts +67 -0
- package/src/schema/nodes/citation.ts +70 -0
- package/src/schema/nodes/comment.ts +50 -0
- package/src/schema/nodes/comments.ts +28 -0
- package/src/schema/nodes/contributor.ts +87 -0
- package/src/schema/nodes/contributors.ts +40 -0
- package/src/schema/nodes/core_section.ts +27 -0
- package/src/schema/nodes/corresp.ts +49 -0
- package/src/schema/nodes/cross_reference.ts +64 -0
- package/src/schema/nodes/doc.ts +21 -0
- package/src/schema/nodes/embed.ts +55 -0
- package/src/schema/nodes/equation.ts +65 -0
- package/src/schema/nodes/equation_element.ts +61 -0
- package/src/schema/nodes/figure.ts +65 -0
- package/src/schema/nodes/figure_element.ts +73 -0
- package/src/schema/nodes/footnote.ts +95 -0
- package/src/schema/nodes/footnotes_element.ts +69 -0
- package/src/schema/nodes/footnotes_section.ts +61 -0
- package/src/schema/nodes/general_table_footnote.ts +42 -0
- package/src/schema/nodes/graphical_abstract_section.ts +62 -0
- package/src/schema/nodes/hard_break.ts +36 -0
- package/src/schema/nodes/hero_image.ts +46 -0
- package/src/schema/nodes/highlight_marker.ts +68 -0
- package/src/schema/nodes/image_element.ts +49 -0
- package/src/schema/nodes/inline_equation.ts +68 -0
- package/src/schema/nodes/inline_footnote.ts +66 -0
- package/src/schema/nodes/keyword.ts +61 -0
- package/src/schema/nodes/keyword_group.ts +63 -0
- package/src/schema/nodes/keywords.ts +59 -0
- package/src/schema/nodes/keywords_element.ts +64 -0
- package/src/schema/nodes/link.ts +79 -0
- package/src/schema/nodes/list.ts +134 -0
- package/src/schema/nodes/listing.ts +91 -0
- package/src/schema/nodes/listing_element.ts +61 -0
- package/src/schema/nodes/long_desc.ts +36 -0
- package/src/schema/nodes/manuscript.ts +86 -0
- package/src/schema/nodes/missing_figure.ts +59 -0
- package/src/schema/nodes/paragraph.ts +77 -0
- package/src/schema/nodes/placeholder.ts +62 -0
- package/src/schema/nodes/placeholder_element.ts +60 -0
- package/src/schema/nodes/pullquote_element.ts +81 -0
- package/src/schema/nodes/quote_image.ts +64 -0
- package/src/schema/nodes/section.ts +69 -0
- package/src/schema/nodes/section_label.ts +39 -0
- package/src/schema/nodes/section_title.ts +58 -0
- package/src/schema/nodes/subtitle.ts +40 -0
- package/src/schema/nodes/subtitles.ts +51 -0
- package/src/schema/nodes/supplement.ts +77 -0
- package/src/schema/nodes/supplements.ts +60 -0
- package/src/schema/nodes/table.ts +144 -0
- package/src/schema/nodes/table_col.ts +76 -0
- package/src/schema/nodes/table_element.ts +67 -0
- package/src/schema/nodes/table_element_footer.ts +42 -0
- package/src/schema/nodes/text.ts +31 -0
- package/src/schema/nodes/title.ts +43 -0
- package/src/schema/nodes/trans_abstract.ts +58 -0
- package/src/schema/nodes/trans_graphical_abstract.ts +67 -0
- package/src/schema/types.ts +240 -0
- package/src/tests.ts +33 -0
- package/src/transformer/id.ts +23 -0
- package/src/transformer/index.ts +21 -0
- package/src/transformer/node-names.ts +73 -0
- package/src/transformer/node-title.ts +111 -0
- package/src/transformer/node-types.ts +39 -0
- package/src/transformer/node-validator.ts +82 -0
- package/src/types.ts +25 -0
- package/src/version.ts +1 -0
|
@@ -0,0 +1,1077 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<article article-type="other" dtd-version="1.1" xml:lang="en"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML">
|
|
4
|
+
<front>
|
|
5
|
+
<journal-meta>
|
|
6
|
+
<journal-id journal-id-type="publisher-id">APA6</journal-id>
|
|
7
|
+
<journal-id journal-id-type="nlm-ta">Brain Behav</journal-id>
|
|
8
|
+
<journal-title-group>
|
|
9
|
+
<journal-title>Brain and Behavior</journal-title>
|
|
10
|
+
<abbrev-journal-title abbrev-type="pubmed">Brain Behav.</abbrev-journal-title>
|
|
11
|
+
</journal-title-group>
|
|
12
|
+
<issn pub-type="epub">2162-3279</issn>
|
|
13
|
+
<publisher>
|
|
14
|
+
<publisher-name>John Wiley and Sons</publisher-name>
|
|
15
|
+
</publisher>
|
|
16
|
+
</journal-meta>
|
|
17
|
+
<article-meta>
|
|
18
|
+
<article-id pub-id-type="publisher-id">BRB3-2019-12-0787</article-id>
|
|
19
|
+
<article-categories>
|
|
20
|
+
<subj-group subj-group-type="heading">
|
|
21
|
+
<subject>Original Research</subject>
|
|
22
|
+
</subj-group>
|
|
23
|
+
</article-categories>
|
|
24
|
+
<title-group>
|
|
25
|
+
<article-title>Blood pressure after follow up in a stroke prevention
|
|
26
|
+
clinic</article-title>
|
|
27
|
+
</title-group>
|
|
28
|
+
<contrib-group>
|
|
29
|
+
<contrib contrib-type="author" corresp="yes">
|
|
30
|
+
<contrib-id contrib-id-type="orcid" authenticated="true"
|
|
31
|
+
>https://orcid.org/0000-0003-2217-5904</contrib-id>
|
|
32
|
+
<name>
|
|
33
|
+
<surname>Hornnes</surname>
|
|
34
|
+
<given-names>Agnete Hviid</given-names>
|
|
35
|
+
</name>
|
|
36
|
+
<degrees>RN</degrees>
|
|
37
|
+
<degrees>MPH</degrees>
|
|
38
|
+
<degrees>PhD</degrees>
|
|
39
|
+
<xref ref-type="aff" rid="BRB3-2019-12-0787-aff1"/>
|
|
40
|
+
</contrib>
|
|
41
|
+
<contrib contrib-type="author">
|
|
42
|
+
<name>
|
|
43
|
+
<surname>Poulsen</surname>
|
|
44
|
+
<given-names>Mai Bang</given-names>
|
|
45
|
+
</name>
|
|
46
|
+
<degrees>MD</degrees>
|
|
47
|
+
<degrees>PhD</degrees>
|
|
48
|
+
<xref ref-type="fn" rid="BRB3-2019-12-0787-afn-0001">*</xref>
|
|
49
|
+
<xref ref-type="aff" rid="BRB3-2019-12-0787-aff1"/>
|
|
50
|
+
</contrib>
|
|
51
|
+
<aff id="BRB3-2019-12-0787-aff1">
|
|
52
|
+
<institution content-type="dept">Department of
|
|
53
|
+
Neurology</institution>,
|
|
54
|
+
<institution>Herlev og Gentofte
|
|
55
|
+
Hospital</institution>,
|
|
56
|
+
<addr-line>Borgmester Ib Juuls Vej 1</addr-line>,
|
|
57
|
+
<addr-line>
|
|
58
|
+
<postal-code>2730</postal-code>
|
|
59
|
+
<city>Herlev</city>
|
|
60
|
+
</addr-line>,
|
|
61
|
+
<country>Denmark</country>
|
|
62
|
+
</aff>
|
|
63
|
+
</contrib-group>
|
|
64
|
+
<author-notes>
|
|
65
|
+
<corresp id="BRB3-2019-12-0787-cor1">Corresponding author: Agnete Hviid
|
|
66
|
+
Hornnes

|
|
67
|
+
<email xlink:href="agnete.hviid.hornnes@regionh.dk"
|
|
68
|
+
>agnete.hviid.hornnes@regionh.dk</email>
FAX: 0045 3868
|
|
69
|
+
4031
|
|
70
|
+
</corresp>
|
|
71
|
+
<fn id="BRB3-2019-12-0787-afn-0001">
|
|
72
|
+
<label>*</label>
|
|
73
|
+
<p>Mai Bang Poulsen, MD, PhD
Department of
|
|
74
|
+
Neurology
Nordsjællands Hospital
Dyrehavevej
|
|
75
|
+
29
3400 Hillerød
Denmark</p>
|
|
76
|
+
</fn>
|
|
77
|
+
<fn id="BRB3-2019-12-0787-afn-0002">
|
|
78
|
+
<p>ClinicalTrials.gov NCT03782857.</p>
|
|
79
|
+
</fn>
|
|
80
|
+
<fn fn-type="con">
|
|
81
|
+
<p content-type="fn-title">Contributor Information</p>
|
|
82
|
+
<p>Agnete Hviid Hornnes, Email: agnete.hviid.hornnes@regionh.dk
|
|
83
|
+
<ext-link
|
|
84
|
+
ext-link-type="uri" xlink:href="https://orcid.org/0000-0003-2217-5904"
|
|
85
|
+
>https//orcid.org/0000-0003-2217-5904</ext-link>
Mai Bang
|
|
86
|
+
Poulsen, Email: mai.bang.poulsen.02@regionh.dk
|
|
87
|
+
</p>
|
|
88
|
+
<p>Both authors have made substantial contributions to conception and design and
|
|
89
|
+
acquisitions and
|
|
90
|
+
analyses
|
|
91
|
+
<?AuthorQuery id="Q3" queryText="Check meaning - US English uses different spellings for the noun "analyses" (more than one analysis) and the verb form "analyzes""?>
|
|
92
|
+
and interpretation of data and have; and been involved in writing the
|
|
93
|
+
manuscript and given final approval of the version to be published. Both
|
|
94
|
+
authors have participated sufficiently in the work to take public
|
|
95
|
+
responsibility for the content; and agree to be accountable for all aspects
|
|
96
|
+
of the work in ensuring that questions related to the accuracy or integrity
|
|
97
|
+
of any part of the work are appropriately investigated and resolved.
|
|
98
|
+
</p>
|
|
99
|
+
</fn>
|
|
100
|
+
</author-notes>
|
|
101
|
+
<pub-date pub-type="ppub">
|
|
102
|
+
<year/>
|
|
103
|
+
</pub-date>
|
|
104
|
+
<volume/>
|
|
105
|
+
<supplementary-material id="S1" xlink:href="attachment:7d9d686b-5488-44a5-a1c5-46351e7f9312" mimetype="application" mime-subtype="vnd.openxmlformats-officedocument.wordprocessingml.document">
|
|
106
|
+
<caption>
|
|
107
|
+
<title>final manuscript-hum-huili-dbh-suicide-20200707_figures (9)
|
|
108
|
+
</title>
|
|
109
|
+
</caption>
|
|
110
|
+
</supplementary-material>
|
|
111
|
+
<history>
|
|
112
|
+
<date date-type="received">
|
|
113
|
+
<day>09</day>
|
|
114
|
+
<month>12</month>
|
|
115
|
+
<year>2019</year>
|
|
116
|
+
</date>
|
|
117
|
+
<date date-type="rev-recd">
|
|
118
|
+
<day/>
|
|
119
|
+
<month/>
|
|
120
|
+
<year/>
|
|
121
|
+
</date>
|
|
122
|
+
<date date-type="accepted">
|
|
123
|
+
<day>27</day>
|
|
124
|
+
<month>04</month>
|
|
125
|
+
<year>2020</year>
|
|
126
|
+
</date>
|
|
127
|
+
</history>
|
|
128
|
+
<permissions> </permissions>
|
|
129
|
+
<abstract>
|
|
130
|
+
<sec>
|
|
131
|
+
<title>Objectives</title>
|
|
132
|
+
<p>In Denmark 25% of hospital admissions with stroke are recurrent strokes. With
|
|
133
|
+
thrombolytic treatment more patients survive with only minor disability.
|
|
134
|
+
This promising development should be followed up by intensive secondary
|
|
135
|
+
prevention. Hypertension is the most important target. We aimed at testing
|
|
136
|
+
the hypotheses that early follow up in a preventive clinic would result in
|
|
137
|
+
1) A higher proportion of patients with blood pressure at target, 2) Time to
|
|
138
|
+
stroke recurrence, myocardial infarction and death would be longer in the
|
|
139
|
+
intervention group compared to controls.</p>
|
|
140
|
+
</sec>
|
|
141
|
+
<sec>
|
|
142
|
+
<title>Materials and Methods</title>
|
|
143
|
+
<p>Eligible patients admitted to the stroke unit of Herlev Hospital were
|
|
144
|
+
randomized shortly before discharge to intervention or control group. Of 78
|
|
145
|
+
included participants data from 73 was available for follow up nine months
|
|
146
|
+
after inclusion. Patients in the intervention group were seen in the clinic
|
|
147
|
+
within one week. In case of hypertension treatment was initiated or supplied
|
|
148
|
+
with a new drug. We used individual targets for blood pressure according to
|
|
149
|
+
diagnosis of stroke and patients’ comorbidity. Patients in the
|
|
150
|
+
intervention group had a median of five visits to the preventive clinic.</p>
|
|
151
|
+
</sec>
|
|
152
|
+
<sec>
|
|
153
|
+
<title>Results</title>
|
|
154
|
+
<p>In the intervention group blood pressure was treated to target in 25 patients
|
|
155
|
+
(69%) versus 14 (38%) in the control group
|
|
156
|
+
(
|
|
157
|
+
<italic>p</italic> = 0.007). Median time to first event was
|
|
158
|
+
44 months (4–49) in the intervention group and 19 months
|
|
159
|
+
(4–37) in controls (
|
|
160
|
+
<italic>p</italic> = 0.316).
|
|
161
|
+
</p>
|
|
162
|
+
</sec>
|
|
163
|
+
<sec>
|
|
164
|
+
<title>Conclusions</title>
|
|
165
|
+
<p>Treatment of hypertension to individual targets after stroke is feasible. It
|
|
166
|
+
may postpone recurrent stroke and death in stroke survivors.</p>
|
|
167
|
+
</sec>
|
|
168
|
+
</abstract>
|
|
169
|
+
<kwd-group kwd-group-type="author">
|
|
170
|
+
<title>KEYWORDS 
</title>
|
|
171
|
+
<kwd>secondary prevention</kwd>
|
|
172
|
+
<kwd>stroke recurrence</kwd>
|
|
173
|
+
<kwd>blood pressure</kwd>
|
|
174
|
+
<kwd>blood pressure target</kwd>
|
|
175
|
+
<kwd>randomized controlled trial</kwd>
|
|
176
|
+
</kwd-group>
|
|
177
|
+
<counts>
|
|
178
|
+
<count count-type="box" count="0"/>
|
|
179
|
+
<fig-count count="3"/>
|
|
180
|
+
<table-count count="2"/>
|
|
181
|
+
<equation-count count="0"/>
|
|
182
|
+
<ref-count count="25"/>
|
|
183
|
+
<word-count count="4484"/>
|
|
184
|
+
</counts>
|
|
185
|
+
</article-meta>
|
|
186
|
+
</front>
|
|
187
|
+
<body>
|
|
188
|
+
<sec id="BRB3-2019-12-0787-sec1" sec-type="intro">
|
|
189
|
+
<label>1</label>
|
|
190
|
+
<title>INTRODUCTION</title>
|
|
191
|
+
<p>Over the last two decades continuous development of thrombolytic treatment of acute
|
|
192
|
+
ischemic stroke (IS) has improved safety and functional outcome in treated patients
|
|
193
|
+
<xref ref-type="bibr"
|
|
194
|
+
rid="BRB3-2019-12-0787-bib-0001 BRB3-2019-12-0787-bib-0002"
|
|
195
|
+
>
|
|
196
|
+
<sup>1;2</sup>
|
|
197
|
+
</xref> thus increasing the possibility of survival with no or
|
|
198
|
+
only minor disability. With this fact and the ongoing aging of populations in mind
|
|
199
|
+
<xref ref-type="bibr" rid="BRB3-2019-12-0787-bib-0003">
|
|
200
|
+
<sup>3</sup>
|
|
201
|
+
</xref> the
|
|
202
|
+
secondary prevention after stroke seems more important than ever. In 1998 the
|
|
203
|
+
Copenhagen Stroke Study reported a recurrence rate of 23%.
|
|
204
|
+
<xref ref-type="bibr"
|
|
205
|
+
rid="BRB3-2019-12-0787-bib-0004">
|
|
206
|
+
<sup>4</sup>
|
|
207
|
+
</xref> According to the Danish
|
|
208
|
+
Stroke Registry our national recurrence rate was 25% in 2011.
|
|
209
|
+
<xref ref-type="bibr"
|
|
210
|
+
rid="BRB3-2019-12-0787-bib-0005">
|
|
211
|
+
<sup>5</sup>
|
|
212
|
+
</xref>
|
|
213
|
+
</p>
|
|
214
|
+
<p>Hypertension is an important risk factor for stroke recurrence.
|
|
215
|
+
<xref ref-type="bibr"
|
|
216
|
+
rid="BRB3-2019-12-0787-bib-0004 BRB3-2019-12-0787-bib-0006 BRB3-2019-12-0787-bib-0007 BRB3-2019-12-0787-bib-0008"
|
|
217
|
+
>
|
|
218
|
+
<sup>4;6–8</sup>
|
|
219
|
+
</xref> Lowering blood pressure (BP) after stroke or
|
|
220
|
+
transitory ischemic attack (TIA) by 10/5 mm Hg has been associated with reduced risk
|
|
221
|
+
of stroke recurrence by 24% and myocardial infarction (MI) by 21%.
|
|
222
|
+
<xref
|
|
223
|
+
ref-type="bibr" rid="BRB3-2019-12-0787-bib-0009">
|
|
224
|
+
<sup>9</sup>
|
|
225
|
+
</xref>
|
|
226
|
+
</p>
|
|
227
|
+
<p>Observational studies have demonstrated the difficulties in lowering BP after stroke
|
|
228
|
+
with rates of BP treated to target ranging from 28% to 73%
|
|
229
|
+
<xref ref-type="bibr"
|
|
230
|
+
rid="BRB3-2019-12-0787-bib-0010 BRB3-2019-12-0787-bib-0011 BRB3-2019-12-0787-bib-0012 BRB3-2019-12-0787-bib-0013"
|
|
231
|
+
>
|
|
232
|
+
<sup>10–13</sup>
|
|
233
|
+
</xref> and interventions aimed at control of BP
|
|
234
|
+
after stroke have not yet found a successful model.
|
|
235
|
+
<xref ref-type="bibr"
|
|
236
|
+
rid="BRB3-2019-12-0787-bib-0014 BRB3-2019-12-0787-bib-0015 BRB3-2019-12-0787-bib-0016 BRB3-2019-12-0787-bib-0017 BRB3-2019-12-0787-bib-0018 BRB3-2019-12-0787-bib-0019"
|
|
237
|
+
>
|
|
238
|
+
<sup>14–19</sup>
|
|
239
|
+
</xref> Fahey and coworkers have reviewed the
|
|
240
|
+
literature aimed at improving control of BP in hypertensive subjects. One large
|
|
241
|
+
study using an organized system of regular visits to a clinic was efficient in
|
|
242
|
+
producing a large decrease in BP and reduction of all-cause mortality compared to
|
|
243
|
+
referral to usual primary care. This was achieved by using a stepwise escalation of
|
|
244
|
+
treatment until target was reached.
|
|
245
|
+
<xref ref-type="bibr"
|
|
246
|
+
rid="BRB3-2019-12-0787-bib-0020">
|
|
247
|
+
<sup>20</sup>
|
|
248
|
+
</xref> Other methods had variable
|
|
249
|
+
or no effect, only nurse or pharmacist led care seemed promising.
|
|
250
|
+
</p>
|
|
251
|
+
<sec>
|
|
252
|
+
<title>Aims and hypotheses</title>
|
|
253
|
+
<p>The aim of the present study was to test the hypotheses that follow up after
|
|
254
|
+
stroke in a specialized nurse led physician supervised clinic with stepwise
|
|
255
|
+
escalation of BP- and lipid lowering treatment would result in</p>
|
|
256
|
+
<sec>
|
|
257
|
+
<title>Primary endpoint</title>
|
|
258
|
+
<sec>
|
|
259
|
+
<title>A greater proportion of participants with BP at target</title>
|
|
260
|
+
<p>Secondary endpoints:
|
|
261
|
+
<list id="L1" list-type="simple">
|
|
262
|
+
<list-item>
|
|
263
|
+
<p>A greater reduction of BP</p>
|
|
264
|
+
</list-item>
|
|
265
|
+
<list-item>
|
|
266
|
+
<p>A greater proportion of participants with LDL-cholesterol
|
|
267
|
+
treated to target</p>
|
|
268
|
+
</list-item>
|
|
269
|
+
<list-item>
|
|
270
|
+
<p>A greater reduction of LDL-cholesterol</p>
|
|
271
|
+
</list-item>
|
|
272
|
+
<list-item>
|
|
273
|
+
<p>Longer time to recurrence of stroke, MI and death</p>
|
|
274
|
+
</list-item>
|
|
275
|
+
<list-item>
|
|
276
|
+
<p>in the intervention group compared to controls</p>
|
|
277
|
+
</list-item>
|
|
278
|
+
</list>
|
|
279
|
+
</p>
|
|
280
|
+
</sec>
|
|
281
|
+
</sec>
|
|
282
|
+
</sec>
|
|
283
|
+
</sec>
|
|
284
|
+
<sec id="BRB3-2019-12-0787-sec2" sec-type="methods">
|
|
285
|
+
<label>2</label>
|
|
286
|
+
<title>MATERIELS AND METHODS</title>
|
|
287
|
+
<p>Before the initiation of the study the authors attended a three-day course in
|
|
288
|
+
treatment of hypertension arranged by the Danish Society of Hypertension. The
|
|
289
|
+
recommendations of our national guidelines regarding BP targets were in line with
|
|
290
|
+
those given by the American Stroke Association in force at the time of initiation of
|
|
291
|
+
the study: “An absolute target BP level and reduction are uncertain and
|
|
292
|
+
should be individualized.”
|
|
293
|
+
<xref ref-type="bibr"
|
|
294
|
+
rid="BRB3-2019-12-0787-bib-0021">
|
|
295
|
+
<sup>21</sup>
|
|
296
|
+
</xref> Following the advice given
|
|
297
|
+
by the Danish Society of Hypertension we used the following targets: A BP
|
|
298
|
+
< 140/90 mm Hg was considered at target in non-diabetic patients. In
|
|
299
|
+
patients aged 80 years or more a BP of 150/90 mm Hg was acceptable if further
|
|
300
|
+
treatment was not tolerated. In case of severe carotid stenosis or a history of
|
|
301
|
+
ischemic heart disease BP should not be lower than 130/80 mm Hg. In patients with
|
|
302
|
+
diabetes or hemorrhagic stroke we aimed at a BP < 130/80 mm Hg.
|
|
303
|
+
Untreated patients without hypertension were categorized as normotensive, untreated
|
|
304
|
+
hypertensive patients as having unknown hypertension, treated patients without
|
|
305
|
+
hypertension as treated to target, and treated patients with hypertension as having
|
|
306
|
+
untreated hypertension.
|
|
307
|
+
</p>
|
|
308
|
+
<p>LDL-cholesterol should be < 2.5 mmol/l in patients with IS or TIA in
|
|
309
|
+
non-diabetic patients and in case of diabetes < 2.0 mmol/l.</p>
|
|
310
|
+
<p>A sample size calculation showed that 24 patients in each group were needed to show a
|
|
311
|
+
difference of 10 mm Hg in the development of systolic BP (80% power).</p>
|
|
312
|
+
<sec id="BRB3-2019-12-0787-sec2.1">
|
|
313
|
+
<label>2.1</label>
|
|
314
|
+
<title>Study sample and setting</title>
|
|
315
|
+
<p>From June 2012 to February 2013 all patients diagnosed with a stroke or TIA at
|
|
316
|
+
the stroke unit of Herlev Gentofte Hospital, University of Copenhagen were
|
|
317
|
+
considered for inclusion in the study. Patients should be without cognitive
|
|
318
|
+
deficits that would prevent their active participation and they should be
|
|
319
|
+
discharged to their own home. The last author used computer-generated block
|
|
320
|
+
randomization procedures with stratification by hypertension (1:1). The
|
|
321
|
+
allocation sequence was concealed, and we aimed at equal numbers in the two
|
|
322
|
+
groups. Shortly before discharge the first author approached eligible patients
|
|
323
|
+
for oral and written information about the study. Where written informed consent
|
|
324
|
+
to participation was achieved BP was measured before a concealed envelope
|
|
325
|
+
administered by a secretary was opened revealing the allocation to either
|
|
326
|
+
intervention or control group.</p>
|
|
327
|
+
<p>The research protocol was approved by the ethics committee of the Capital Region
|
|
328
|
+
of Denmark (H-3-2011–152) and by the Danish Data Protection Agency
|
|
329
|
+
(2012–41-0429). The study was conducted according to all common ethical
|
|
330
|
+
standards including the rules given by the Declaration of Helsinki. Patients
|
|
331
|
+
randomized to the control group had the usual treatment: one visit in the
|
|
332
|
+
outpatient clinic of the stroke unit three months after discharge. Patients
|
|
333
|
+
randomized to the intervention group had an appointment with the first author
|
|
334
|
+
within one week after discharge. The first author undertook all visits in the
|
|
335
|
+
preventive clinic.</p>
|
|
336
|
+
</sec>
|
|
337
|
+
<sec id="BRB3-2019-12-0787-sec2.2">
|
|
338
|
+
<label>2.2</label>
|
|
339
|
+
<title>Procedures and intervention</title>
|
|
340
|
+
<p>BP was measured at every visit after at least five minutes rest in a sitting
|
|
341
|
+
position in an arm chair. BP was measured simultaneously in both arms followed
|
|
342
|
+
by two measurements with 10-min intervals using the arm with the highest
|
|
343
|
+
systolic BP. In case of hypertension the first author would suggest initiation
|
|
344
|
+
or intensification of antihypertensive treatment. The last author would accept
|
|
345
|
+
or suggest an alternative and do the prescription. Patients would come to the
|
|
346
|
+
clinic for control of BP and relevant blood tests every 3–4 weeks until
|
|
347
|
+
BP was at target. After five weeks on lipid lowering drugs treatment was
|
|
348
|
+
intensified if needed. Patients who did not tolerate lipid lowering medication
|
|
349
|
+
were referred to a dietitian. In motivated patients home BP measurements were
|
|
350
|
+
performed using patients’ own monitor or by lending patients a BP monitor
|
|
351
|
+
between visits.</p>
|
|
352
|
+
<p>Patients in the intervention group had a mean of five visits to the clinic with
|
|
353
|
+
addition of new drugs rather than adding more of the same drug in case of
|
|
354
|
+
hypertension. Although we used minimum doses to prevent adverse effects, many
|
|
355
|
+
patients had unacceptable side effects necessitating change to another class of
|
|
356
|
+
antihypertensive drug.</p>
|
|
357
|
+
<p>Patients were informed about the importance of life-long adherence with all
|
|
358
|
+
preventive medication. Those with elevated BP or receiving antihypertensive
|
|
359
|
+
treatment were advised in salt reduction, smokers were advised to stop smoking
|
|
360
|
+
and all patients were informed about the benefits of 30 min of moderate physical
|
|
361
|
+
activity daily. Likewise, information about the risk of an intake of alcohol
|
|
362
|
+
above seven drinks per week in women and 14 drinks in men was part of the
|
|
363
|
+
program as well as the benefits of weight reduction in overweight patients with
|
|
364
|
+
hypertension or diabetes.</p>
|
|
365
|
+
</sec>
|
|
366
|
+
<sec id="BRB3-2019-12-0787-sec2.3">
|
|
367
|
+
<label>2.3</label>
|
|
368
|
+
<title>Follow up</title>
|
|
369
|
+
<p>Participants in both groups were invited to the usual follow up visit three
|
|
370
|
+
months after discharge at the outpatient clinic of the stroke unit as well as a
|
|
371
|
+
follow up visit in the study a median of 9 (IQR 8–11) months after
|
|
372
|
+
inclusion.</p>
|
|
373
|
+
<p>In accordance with the protocol the final follow up visits were performed by
|
|
374
|
+
nurses in the outpatient clinic with measurement of BP and blood-cholesterols.
|
|
375
|
+
Patients were asked not to reveal their group allocation but blinding of the
|
|
376
|
+
nurses was not possible. Patients were interviewed about adherence to all
|
|
377
|
+
preventive medications as well as their present life style. For practical
|
|
378
|
+
purposes a minority of visits were performed by the first author. To do
|
|
379
|
+
intention to treat
|
|
380
|
+
analyses
|
|
381
|
+
<?AuthorQuery id="Q1" queryText="Check meaning - US English uses different spellings for the noun "analyses" (more than one analysis) and the verb form "analyzes""?>
|
|
382
|
+
we used last observation carried forward regarding the endpoints of the study
|
|
383
|
+
where patients had died or did not respond to the invitation to a follow up
|
|
384
|
+
visit. Thus, we used the last recorded values in five patients in the
|
|
385
|
+
intervention group and in seven controls.
|
|
386
|
+
</p>
|
|
387
|
+
<p>After a median of 65 months (IQR: 61–66) from inclusion data on vascular
|
|
388
|
+
events and death were attained from the hospital based medical records covering
|
|
389
|
+
all hospitals of the region.</p>
|
|
390
|
+
</sec>
|
|
391
|
+
<sec id="BRB3-2019-12-0787-sec2.4">
|
|
392
|
+
<label>2.4</label>
|
|
393
|
+
<title>Statistics</title>
|
|
394
|
+
<p>Data were entered into Excel and imported into SAS. Statistical
|
|
395
|
+
analyses
|
|
396
|
+
<?AuthorQuery id="Q2" queryText="Check meaning - US English uses different spellings for the noun "analyses" (more than one analysis) and the verb form "analyzes""?>
|
|
397
|
+
were performed by the first author according to a pre-established statistical
|
|
398
|
+
analysis plan. We used Chi square test (for the primary outcome) or
|
|
399
|
+
Fisher’s exact test as appropriate for comparison of proportions, and for
|
|
400
|
+
change from baseline we used McNemar’s test. For continuous variables we
|
|
401
|
+
used t-test or Mann-Whitney’s test*. Change from baseline was analyzed by
|
|
402
|
+
the paired t-test or Wilcoxon signed rank sum test* (*where data were not
|
|
403
|
+
normally distributed). We used SAS 9.4 for Windows and
|
|
404
|
+
<italic>p</italic> < 0.05 was considered significant.
|
|
405
|
+
</p>
|
|
406
|
+
</sec>
|
|
407
|
+
</sec>
|
|
408
|
+
<sec id="BRB3-2019-12-0787-sec3" sec-type="results">
|
|
409
|
+
<label>3</label>
|
|
410
|
+
<title>RESULTS</title>
|
|
411
|
+
<p>We included 78 patients in the study. Due to revision of stroke diagnoses in four
|
|
412
|
+
participants and as one participant never turned up for the intervention, data on 73
|
|
413
|
+
participants were available for follow up (
|
|
414
|
+
<xref ref-type="fig"
|
|
415
|
+
rid="BRB3-2019-12-0787-fig-0001">Figure 1</xref>). The median stay in hospital
|
|
416
|
+
was 4 days (IQR: 3–6). As seen from
|
|
417
|
+
<xref ref-type="table"
|
|
418
|
+
rid="BRB3-2019-12-0787-tbl-0001">Table 1</xref> most participants had no or
|
|
419
|
+
slight disability.
|
|
420
|
+
</p>
|
|
421
|
+
<fig id="BRB3-2019-12-0787-fig-0001" position="float" fig-type="half-right">
|
|
422
|
+
<label>FIGURE 1</label>
|
|
423
|
+
<caption>
|
|
424
|
+
<p>Flow chart of participants</p>
|
|
425
|
+
</caption>
|
|
426
|
+
<graphic xlink:href="BRB3-2019-12-0787-fig-0001.PNG"/>
|
|
427
|
+
</fig>
|
|
428
|
+
<table-wrap id="BRB3-2019-12-0787-tbl-0001" position="float">
|
|
429
|
+
<label>TABLE 1</label>
|
|
430
|
+
<caption>
|
|
431
|
+
<title>Baseline characteristics of 73 patients</title>
|
|
432
|
+
</caption>
|
|
433
|
+
<table frame="hsides" rules="groups">
|
|
434
|
+
<col width="52.14%"/>
|
|
435
|
+
<col width="11.92%"/>
|
|
436
|
+
<col width="14.9%"/>
|
|
437
|
+
<col width="13.1%"/>
|
|
438
|
+
<col width="7.94%"/>
|
|
439
|
+
<thead>
|
|
440
|
+
<tr>
|
|
441
|
+
<th valign="top" align="left" scope="col"
|
|
442
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
443
|
+
>Characteristics</th>
|
|
444
|
+
<th valign="top" align="left" scope="col"
|
|
445
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
446
|
+
>All
|
|
447
|
+
<break/>(
|
|
448
|
+
<italic>n</italic> = 73)
|
|
449
|
+
</th>
|
|
450
|
+
<th valign="top" align="left" scope="col"
|
|
451
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
452
|
+
>Intervention (
|
|
453
|
+
<italic>n</italic> = 36)
|
|
454
|
+
</th>
|
|
455
|
+
<th valign="top" align="left" scope="col"
|
|
456
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
457
|
+
>Control (
|
|
458
|
+
<italic>n</italic> = 37)
|
|
459
|
+
</th>
|
|
460
|
+
<th valign="top" align="left" scope="col"
|
|
461
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt">P</th>
|
|
462
|
+
</tr>
|
|
463
|
+
</thead>
|
|
464
|
+
<tbody>
|
|
465
|
+
<tr>
|
|
466
|
+
<td valign="middle" align="left" style="border-top: solid 0.50pt"
|
|
467
|
+
scope="row">Sex, female</td>
|
|
468
|
+
<td valign="middle" align="left" style="border-top: solid 0.50pt">29
|
|
469
|
+
(40)</td>
|
|
470
|
+
<td valign="middle" align="left" style="border-top: solid 0.50pt">15
|
|
471
|
+
(42)</td>
|
|
472
|
+
<td valign="middle" align="left" style="border-top: solid 0.50pt">14
|
|
473
|
+
(38)</td>
|
|
474
|
+
<td valign="middle" align="left" style="border-top: solid 0.50pt"
|
|
475
|
+
>0.74</td>
|
|
476
|
+
</tr>
|
|
477
|
+
<tr>
|
|
478
|
+
<td valign="middle" align="left" scope="row">Age (years),
|
|
479
|
+
mean ± SD</td>
|
|
480
|
+
<td valign="middle" align="left">66 ± 12</td>
|
|
481
|
+
<td valign="middle" align="left">63 ± 13</td>
|
|
482
|
+
<td valign="middle" align="left">68 ± 11</td>
|
|
483
|
+
<td valign="middle" align="left">0.08</td>
|
|
484
|
+
</tr>
|
|
485
|
+
<tr>
|
|
486
|
+
<td valign="top" align="left" scope="row">Length of
|
|
487
|
+
education
|
|
488
|
+
<break/>< 10 years
|
|
489
|
+
<break/>10 – 12
|
|
490
|
+
years
|
|
491
|
+
<break/>> 12 years
|
|
492
|
+
</td>
|
|
493
|
+
<td valign="top" align="left">12 (17)
|
|
494
|
+
<break/>22 (30)
|
|
495
|
+
<break/>38 (53)
|
|
496
|
+
</td>
|
|
497
|
+
<td valign="top" align="left">6 (17)
|
|
498
|
+
<break/>10 (29)
|
|
499
|
+
<break/>19 (54)
|
|
500
|
+
</td>
|
|
501
|
+
<td valign="top" align="left">6 (16)
|
|
502
|
+
<break/>12 (33)
|
|
503
|
+
<break/>19 (51)
|
|
504
|
+
</td>
|
|
505
|
+
<td valign="top" align="left">0.95</td>
|
|
506
|
+
</tr>
|
|
507
|
+
<tr>
|
|
508
|
+
<td valign="top" align="left" scope="row">Diagnosis of
|
|
509
|
+
stroke
|
|
510
|
+
<break/>Ischemic Stroke
|
|
511
|
+
<break/>TIA
|
|
512
|
+
<break/>Hemorrhagic
|
|
513
|
+
stroke
|
|
514
|
+
</td>
|
|
515
|
+
<td valign="top" align="left">63 (87)
|
|
516
|
+
<break/>9 (12)
|
|
517
|
+
<break/>1 (1)
|
|
518
|
+
</td>
|
|
519
|
+
<td valign="top" align="left">33 (92)
|
|
520
|
+
<break/>3 (8)
|
|
521
|
+
</td>
|
|
522
|
+
<td valign="top" align="left">30 (81)
|
|
523
|
+
<break/>6 (16)
|
|
524
|
+
<break/>1 (3)
|
|
525
|
+
</td>
|
|
526
|
+
<td valign="top" align="left">0.60
|
|
527
|
+
<sup>a</sup>
|
|
528
|
+
</td>
|
|
529
|
+
</tr>
|
|
530
|
+
<tr>
|
|
531
|
+
<td valign="top" align="left" scope="row">Recurrent stroke</td>
|
|
532
|
+
<td valign="top" align="left">11 (15)</td>
|
|
533
|
+
<td valign="top" align="left">5 (14)</td>
|
|
534
|
+
<td valign="top" align="left">6 (16)</td>
|
|
535
|
+
<td valign="top" align="left">1.00
|
|
536
|
+
<sup>a</sup>
|
|
537
|
+
</td>
|
|
538
|
+
</tr>
|
|
539
|
+
<tr>
|
|
540
|
+
<td valign="top" align="left" scope="row">Modified Rankin Scale score
|
|
541
|
+
> 2</td>
|
|
542
|
+
<td valign="top" align="left">5 (6)</td>
|
|
543
|
+
<td valign="top" align="left">1 (3)</td>
|
|
544
|
+
<td valign="top" align="left">4 (11)</td>
|
|
545
|
+
<td valign="top" align="left">0.36
|
|
546
|
+
<sup>a</sup>
|
|
547
|
+
</td>
|
|
548
|
+
</tr>
|
|
549
|
+
<tr>
|
|
550
|
+
<td valign="top" align="left" scope="row">Antihypertensive medication
|
|
551
|
+
before stroke</td>
|
|
552
|
+
<td valign="top" align="left">39 (53)</td>
|
|
553
|
+
<td valign="top" align="left">15 (42)</td>
|
|
554
|
+
<td valign="top" align="left">24 (65)</td>
|
|
555
|
+
<td valign="top" align="left">0.047</td>
|
|
556
|
+
</tr>
|
|
557
|
+
<tr>
|
|
558
|
+
<td valign="top" align="left" scope="row">Antihypertensive medication at
|
|
559
|
+
discharge</td>
|
|
560
|
+
<td valign="top" align="left">46 (63)</td>
|
|
561
|
+
<td valign="top" align="left">20 (56)</td>
|
|
562
|
+
<td valign="top" align="left">26 (70)</td>
|
|
563
|
+
<td valign="top" align="left">0.19</td>
|
|
564
|
+
</tr>
|
|
565
|
+
<tr>
|
|
566
|
+
<td valign="top" align="left" scope="row">Cholesterol lowering
|
|
567
|
+
medication before stroke</td>
|
|
568
|
+
<td valign="top" align="left">25 (34)</td>
|
|
569
|
+
<td valign="top" align="left">11 (31)</td>
|
|
570
|
+
<td valign="top" align="left">14 (38)</td>
|
|
571
|
+
<td valign="top" align="left">0.51</td>
|
|
572
|
+
</tr>
|
|
573
|
+
<tr>
|
|
574
|
+
<td valign="top" align="left" scope="row">Cholesterol lowering
|
|
575
|
+
medication at discharge</td>
|
|
576
|
+
<td valign="top" align="left">65 (89)</td>
|
|
577
|
+
<td valign="top" align="left">35 (97)</td>
|
|
578
|
+
<td valign="top" align="left">30 (81)</td>
|
|
579
|
+
<td valign="top" align="left">0.03</td>
|
|
580
|
+
</tr>
|
|
581
|
+
<tr>
|
|
582
|
+
<td valign="top" align="left" scope="row">Diabetes at baseline</td>
|
|
583
|
+
<td valign="top" align="left">14 (19)</td>
|
|
584
|
+
<td valign="top" align="left">5 (14)</td>
|
|
585
|
+
<td valign="top" align="left">9 (24)</td>
|
|
586
|
+
<td valign="top" align="left">0.37
|
|
587
|
+
<sup>a</sup>
|
|
588
|
+
</td>
|
|
589
|
+
</tr>
|
|
590
|
+
<tr>
|
|
591
|
+
<td valign="top" align="left" scope="row">Diabetes at discharge</td>
|
|
592
|
+
<td valign="top" align="left">16 (22)</td>
|
|
593
|
+
<td valign="top" align="left">6 (17)</td>
|
|
594
|
+
<td valign="top" align="left">10 (27)</td>
|
|
595
|
+
<td valign="top" align="left">0.29</td>
|
|
596
|
+
</tr>
|
|
597
|
+
<tr>
|
|
598
|
+
<td valign="top" align="left" scope="row">Atrial fibrillation at
|
|
599
|
+
baseline</td>
|
|
600
|
+
<td valign="top" align="left">7 (10)</td>
|
|
601
|
+
<td valign="top" align="left">3 (8)</td>
|
|
602
|
+
<td valign="top" align="left">4 (11)</td>
|
|
603
|
+
<td valign="top" align="left">1.00
|
|
604
|
+
<sup>a</sup>
|
|
605
|
+
</td>
|
|
606
|
+
</tr>
|
|
607
|
+
<tr>
|
|
608
|
+
<td valign="top" align="left" scope="row">Atrial fibrillation at
|
|
609
|
+
discharge</td>
|
|
610
|
+
<td valign="top" align="left">12 (16)</td>
|
|
611
|
+
<td valign="top" align="left">6 (16)</td>
|
|
612
|
+
<td valign="top" align="left">6 (17)</td>
|
|
613
|
+
<td valign="top" align="left">1.00</td>
|
|
614
|
+
</tr>
|
|
615
|
+
<tr>
|
|
616
|
+
<td valign="top" align="left" scope="row">Unhealthy
|
|
617
|
+
dieting
|
|
618
|
+
<sup>b</sup>
|
|
619
|
+
</td>
|
|
620
|
+
<td valign="top" align="left">59 (82)</td>
|
|
621
|
+
<td valign="top" align="left">25 (71)</td>
|
|
622
|
+
<td valign="top" align="left">34 (92)</td>
|
|
623
|
+
<td valign="top" align="left">0.03</td>
|
|
624
|
+
</tr>
|
|
625
|
+
<tr>
|
|
626
|
+
<td valign="top" align="left" scope="row">Current smoking</td>
|
|
627
|
+
<td valign="top" align="left">19 (26)</td>
|
|
628
|
+
<td valign="top" align="left">11 (31)</td>
|
|
629
|
+
<td valign="top" align="left">8 (22)</td>
|
|
630
|
+
<td valign="top" align="left">0.62</td>
|
|
631
|
+
</tr>
|
|
632
|
+
<tr>
|
|
633
|
+
<td valign="top" align="left" scope="row">Alcohol above
|
|
634
|
+
limits
|
|
635
|
+
<sup>c</sup>
|
|
636
|
+
</td>
|
|
637
|
+
<td valign="top" align="left">23 (32)</td>
|
|
638
|
+
<td valign="top" align="left">12 (34)</td>
|
|
639
|
+
<td valign="top" align="left">11 (30)</td>
|
|
640
|
+
<td valign="top" align="left">0.68</td>
|
|
641
|
+
</tr>
|
|
642
|
+
<tr>
|
|
643
|
+
<td valign="top" align="left" scope="row">Sedentary
|
|
644
|
+
lifestyle
|
|
645
|
+
<sup>d</sup>
|
|
646
|
+
</td>
|
|
647
|
+
<td valign="top" align="left">17 (24)</td>
|
|
648
|
+
<td valign="top" align="left">9 (26)</td>
|
|
649
|
+
<td valign="top" align="left">8 (22)</td>
|
|
650
|
+
<td valign="top" align="left">0.68</td>
|
|
651
|
+
</tr>
|
|
652
|
+
<tr>
|
|
653
|
+
<td valign="top" align="left" scope="row"
|
|
654
|
+
>BMI ≥ 25</td>
|
|
655
|
+
<td valign="top" align="left">46 (63)</td>
|
|
656
|
+
<td valign="top" align="left">24 (67)</td>
|
|
657
|
+
<td valign="top" align="left">22 (59)</td>
|
|
658
|
+
<td valign="top" align="left">0.52</td>
|
|
659
|
+
</tr>
|
|
660
|
+
<tr>
|
|
661
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt"
|
|
662
|
+
scope="row">Self-rated health: fair, poor, or very poor</td>
|
|
663
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">34
|
|
664
|
+
(47)</td>
|
|
665
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">15
|
|
666
|
+
(43)</td>
|
|
667
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">19
|
|
668
|
+
(51)</td>
|
|
669
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt"
|
|
670
|
+
>0.47</td>
|
|
671
|
+
</tr>
|
|
672
|
+
</tbody>
|
|
673
|
+
</table>
|
|
674
|
+
<table-wrap-foot>
|
|
675
|
+
<p>Values are expressed as frequencies (%) or as
|
|
676
|
+
mean ± standard deviations</p>
|
|
677
|
+
<fn id="BRB3-2019-12-0787-tfn1">
|
|
678
|
+
<label>
|
|
679
|
+
<sup>a</sup>
|
|
680
|
+
</label>
|
|
681
|
+
<p>Fisher’s exact test.
|
|
682
|
+
<sup>b</sup> Less than 600 g of fruit and
|
|
683
|
+
vegetables per day, fish for dinner less than twice per week.
|
|
684
|
+
<sup>c</sup> More than 7 drinks per week in women/more than 14
|
|
685
|
+
drinks per week in men.
|
|
686
|
+
<sup>d</sup> Less than 30 min of moderate
|
|
687
|
+
physical activity per day.
|
|
688
|
+
</p>
|
|
689
|
+
</fn>
|
|
690
|
+
</table-wrap-foot>
|
|
691
|
+
</table-wrap>
|
|
692
|
+
<p>Less than 20% of patients had a baseline BP treated to target (
|
|
693
|
+
<xref ref-type="fig"
|
|
694
|
+
rid="BRB3-2019-12-0787-fig-0002">Figure 2</xref>). Twenty-eight patients (78%)
|
|
695
|
+
in the intervention group and 29 patients (78%) in the control group had a 3-month
|
|
696
|
+
visit in the outpatient clinic. Here 15 patients (42%) in the intervention group had
|
|
697
|
+
their BP and blood cholesterol measured and so had 23 patients (62%) in the control
|
|
698
|
+
group. At follow up patients in both groups reported a median of two visits
|
|
699
|
+
including BP measurement at the general practitioner´s office since discharge
|
|
700
|
+
from hospital.
|
|
701
|
+
</p>
|
|
702
|
+
<fig id="BRB3-2019-12-0787-fig-0002" position="float" fig-type="half-right">
|
|
703
|
+
<label>FIGURE 2</label>
|
|
704
|
+
<caption>
|
|
705
|
+
<p>Blood pressure and treatment of hypertension at baseline in 73 patients
|
|
706
|
+
(%)</p>
|
|
707
|
+
</caption>
|
|
708
|
+
<graphic xlink:href="BRB3-2019-12-0787-fig-0002.PNG"/>
|
|
709
|
+
</fig>
|
|
710
|
+
<sec id="BRB3-2019-12-0787-sec3.1">
|
|
711
|
+
<label>3.1</label>
|
|
712
|
+
<title>Primary endpoint</title>
|
|
713
|
+
<p>Follow up visits showed that 25 patients (69%) in the intervention group had a BP
|
|
714
|
+
at target versus 14 (38%) of controls
|
|
715
|
+
(
|
|
716
|
+
<italic>p</italic> = 0.007). In four patients (10%) in the
|
|
717
|
+
intervention group antihypertensive medication remained unchanged since
|
|
718
|
+
discharge versus 23 (62%) of controls
|
|
719
|
+
(
|
|
720
|
+
<italic>p</italic> < 0.0001) illustrated by the differences in
|
|
721
|
+
BP treated to target as well as untreated hypertension in
|
|
722
|
+
<xref ref-type="fig"
|
|
723
|
+
rid="BRB3-2019-12-0787-fig-0003">Figure 3</xref>.
|
|
724
|
+
</p>
|
|
725
|
+
<fig id="BRB3-2019-12-0787-fig-0003" position="float" fig-type="half-right">
|
|
726
|
+
<label>FIGURE 3</label>
|
|
727
|
+
<caption>
|
|
728
|
+
<p>Blood pressure and treatment of hypertension at follow up in 73 patients
|
|
729
|
+
(%)</p>
|
|
730
|
+
</caption>
|
|
731
|
+
<graphic xlink:href="BRB3-2019-12-0787-fig-0003.PNG"/>
|
|
732
|
+
</fig>
|
|
733
|
+
</sec>
|
|
734
|
+
<sec id="BRB3-2019-12-0787-sec3.2">
|
|
735
|
+
<label>3.2</label>
|
|
736
|
+
<title>Secondary endpoints</title>
|
|
737
|
+
<p>Median reduction in systolic BP was 11 mm Hg (-5-19) with 14 mm Hg (IQR:
|
|
738
|
+
5–21) in the intervention group and 3 mm Hg (IQR -11-17) in the control
|
|
739
|
+
group (
|
|
740
|
+
<italic>p</italic> = 0.045). Median reduction in diastolic
|
|
741
|
+
BP was 2 mm Hg (-2-11) with 7 mm Hg (IQR -1-13) in the intervention group and 1
|
|
742
|
+
mm Hg (IQR -6-8) in the control group
|
|
743
|
+
(
|
|
744
|
+
<italic>p</italic> = 0.04).
|
|
745
|
+
</p>
|
|
746
|
+
<p>There was no difference between the groups regarding LDL-cholesterol treated to
|
|
747
|
+
target with 32 patients (89%) at target in the intervention group versus 29
|
|
748
|
+
patients (78%) in the control group (
|
|
749
|
+
<italic>p</italic> = 0.21).
|
|
750
|
+
We found significant reductions in LDL-cholesterol in both groups, but no
|
|
751
|
+
difference between the groups: 1.6 (IQR: 0.4–2.2) mmol/l in the
|
|
752
|
+
intervention group versus 0.8 (IQR: 0.4–1.8) mmol/l among controls
|
|
753
|
+
(
|
|
754
|
+
<italic>p</italic> = 0.18).
|
|
755
|
+
</p>
|
|
756
|
+
<p>In 11 patients (31%) in the intervention group cholesterol lowering medication
|
|
757
|
+
remained unchanged since discharge versus 29 (78%) of controls
|
|
758
|
+
(
|
|
759
|
+
<italic>p</italic> < 0.0001).
|
|
760
|
+
</p>
|
|
761
|
+
<p>The combined endpoint of both BP and LDL-cholesterol at target was achieved in 22
|
|
762
|
+
(61%) of patients in the intervention group and in 10 patients (27%) in the
|
|
763
|
+
control group (
|
|
764
|
+
<italic>p</italic> = 0.003). At the end of the
|
|
765
|
+
study 24 patients (68%) in the intervention group measured their BP at home
|
|
766
|
+
versus 14 (38%) of controls (
|
|
767
|
+
<italic>p</italic> = 0.03).
|
|
768
|
+
</p>
|
|
769
|
+
<p>The only significant change in lifestyle was a reduction in current smokers by
|
|
770
|
+
four in the control group (
|
|
771
|
+
<xref ref-type="table"
|
|
772
|
+
rid="BRB3-2019-12-0787-tbl-0002">Table 2</xref>).
|
|
773
|
+
</p>
|
|
774
|
+
<table-wrap id="BRB3-2019-12-0787-tbl-0002" position="float">
|
|
775
|
+
<label>TABLE 2</label>
|
|
776
|
+
<caption>
|
|
777
|
+
<title>Nine months follow up of 73 patients</title>
|
|
778
|
+
</caption>
|
|
779
|
+
<table frame="hsides" rules="groups">
|
|
780
|
+
<col width="52.91%"/>
|
|
781
|
+
<col width="11.06%"/>
|
|
782
|
+
<col width="14.16%"/>
|
|
783
|
+
<col width="11.5%"/>
|
|
784
|
+
<col width="10.37%"/>
|
|
785
|
+
<thead>
|
|
786
|
+
<tr>
|
|
787
|
+
<th valign="top" align="left" scope="col"
|
|
788
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
789
|
+
>Characteristics</th>
|
|
790
|
+
<th valign="top" align="left" scope="col"
|
|
791
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
792
|
+
>All
|
|
793
|
+
<break/>(
|
|
794
|
+
<italic>n</italic> = 73)
|
|
795
|
+
</th>
|
|
796
|
+
<th valign="top" align="left" scope="col"
|
|
797
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
798
|
+
>Intervention
|
|
799
|
+
<break/>(
|
|
800
|
+
<italic>n</italic> = 36)
|
|
801
|
+
</th>
|
|
802
|
+
<th valign="top" align="left" scope="col"
|
|
803
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
804
|
+
>Control
|
|
805
|
+
<break/>(
|
|
806
|
+
<italic>n</italic> = 37)
|
|
807
|
+
</th>
|
|
808
|
+
<th valign="top" align="left" scope="col"
|
|
809
|
+
style="border-top: solid 0.50pt; border-bottom: solid 0.50pt"
|
|
810
|
+
>P</th>
|
|
811
|
+
</tr>
|
|
812
|
+
</thead>
|
|
813
|
+
<tbody>
|
|
814
|
+
<tr>
|
|
815
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt"
|
|
816
|
+
scope="row">Systolic BP, mm Hg, mean ± SD</td>
|
|
817
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt">134
|
|
818
|
+
± 21</td>
|
|
819
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt">130
|
|
820
|
+
± 17</td>
|
|
821
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt">137
|
|
822
|
+
± 24</td>
|
|
823
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt"
|
|
824
|
+
>0.12</td>
|
|
825
|
+
</tr>
|
|
826
|
+
<tr>
|
|
827
|
+
<td valign="top" align="left" scope="row">Diastolic BP, mm Hg, mean
|
|
828
|
+
± SD</td>
|
|
829
|
+
<td valign="top" align="left">78 ± 11</td>
|
|
830
|
+
<td valign="top" align="left">78 ± 10</td>
|
|
831
|
+
<td valign="top" align="left">78 ± 12.8)</td>
|
|
832
|
+
<td valign="top" align="left">0.94</td>
|
|
833
|
+
</tr>
|
|
834
|
+
<tr>
|
|
835
|
+
<td valign="top" align="left" scope="row">Antihypertensive
|
|
836
|
+
medication</td>
|
|
837
|
+
<td valign="top" align="left">55 (75)</td>
|
|
838
|
+
<td valign="top" align="left">29 (81)</td>
|
|
839
|
+
<td valign="top" align="left">26 (70)</td>
|
|
840
|
+
<td valign="top" align="left">0.31</td>
|
|
841
|
+
</tr>
|
|
842
|
+
<tr>
|
|
843
|
+
<td valign="top" align="left" scope="row">100% compliance with AHM
|
|
844
|
+
(
|
|
845
|
+
<italic>n</italic> = 45)
|
|
846
|
+
</td>
|
|
847
|
+
<td valign="top" align="left">38 (84)</td>
|
|
848
|
+
<td valign="top" align="left">23 (89)</td>
|
|
849
|
+
<td valign="top" align="left">15 (79)</td>
|
|
850
|
+
<td valign="top" align="left">0.38</td>
|
|
851
|
+
</tr>
|
|
852
|
+
<tr>
|
|
853
|
+
<td valign="top" align="left" scope="row">LDL-cholesterol, mmol/l
|
|
854
|
+
(
|
|
855
|
+
<italic>n</italic> = 72), mean
|
|
856
|
+
± SD
|
|
857
|
+
</td>
|
|
858
|
+
<td valign="top" align="left">1.9 ± 0.8</td>
|
|
859
|
+
<td valign="top" align="left">1.9 ± 0.7</td>
|
|
860
|
+
<td valign="top" align="left">2.0 ± 0.8</td>
|
|
861
|
+
<td valign="top" align="left">0.66</td>
|
|
862
|
+
</tr>
|
|
863
|
+
<tr>
|
|
864
|
+
<td valign="top" align="left" scope="row">Cholesterol lowering
|
|
865
|
+
medication</td>
|
|
866
|
+
<td valign="top" align="left">64 (88)</td>
|
|
867
|
+
<td valign="top" align="left">32 (89)</td>
|
|
868
|
+
<td valign="top" align="left">32 (86)</td>
|
|
869
|
+
<td valign="top" align="left">0.76</td>
|
|
870
|
+
</tr>
|
|
871
|
+
<tr>
|
|
872
|
+
<td valign="top" align="left" scope="row">100% compliance with CLM
|
|
873
|
+
(
|
|
874
|
+
<italic>n</italic> = 52)
|
|
875
|
+
</td>
|
|
876
|
+
<td valign="top" align="left">46 (89)</td>
|
|
877
|
+
<td valign="top" align="left">24 (86)</td>
|
|
878
|
+
<td valign="top" align="left">22 (92)</td>
|
|
879
|
+
<td valign="top" align="left">0.50</td>
|
|
880
|
+
</tr>
|
|
881
|
+
<tr>
|
|
882
|
+
<td valign="top" align="left" scope="row">Unhealthy
|
|
883
|
+
dieting
|
|
884
|
+
<sup>b</sup>
|
|
885
|
+
</td>
|
|
886
|
+
<td valign="top" align="left">59 (81)</td>
|
|
887
|
+
<td valign="top" align="left">26 (72)</td>
|
|
888
|
+
<td valign="top" align="left">33 (89)</td>
|
|
889
|
+
<td valign="top" align="left">0.76</td>
|
|
890
|
+
</tr>
|
|
891
|
+
<tr>
|
|
892
|
+
<td valign="top" align="left" scope="row">Current smoker</td>
|
|
893
|
+
<td valign="top" align="left">15 (21)</td>
|
|
894
|
+
<td valign="top" align="left">11 (31)</td>
|
|
895
|
+
<td valign="top" align="left">4 (11)</td>
|
|
896
|
+
<td valign="top" align="left">0.046
|
|
897
|
+
<sup>a</sup>
|
|
898
|
+
</td>
|
|
899
|
+
</tr>
|
|
900
|
+
<tr>
|
|
901
|
+
<td valign="top" align="left" scope="row"
|
|
902
|
+
>Alcohol > limits
|
|
903
|
+
<sup>c</sup>
|
|
904
|
+
</td>
|
|
905
|
+
<td valign="top" align="left">20 (27)</td>
|
|
906
|
+
<td valign="top" align="left">11 (31)</td>
|
|
907
|
+
<td valign="top" align="left">9 (24)</td>
|
|
908
|
+
<td valign="top" align="left">0.55</td>
|
|
909
|
+
</tr>
|
|
910
|
+
<tr>
|
|
911
|
+
<td valign="top" align="left" scope="row">Sedentary
|
|
912
|
+
lifestyle
|
|
913
|
+
<sup>d</sup>
|
|
914
|
+
</td>
|
|
915
|
+
<td valign="top" align="left">16 (22)</td>
|
|
916
|
+
<td valign="top" align="left">7 (20)</td>
|
|
917
|
+
<td valign="top" align="left">9 (24)</td>
|
|
918
|
+
<td valign="top" align="left">0.66</td>
|
|
919
|
+
</tr>
|
|
920
|
+
<tr>
|
|
921
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt"
|
|
922
|
+
scope="row">BMI ≥ 25</td>
|
|
923
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">43
|
|
924
|
+
(59)</td>
|
|
925
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">21
|
|
926
|
+
(58)</td>
|
|
927
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">22
|
|
928
|
+
(60)</td>
|
|
929
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt"
|
|
930
|
+
>0.92</td>
|
|
931
|
+
</tr>
|
|
932
|
+
</tbody>
|
|
933
|
+
</table>
|
|
934
|
+
<table-wrap-foot>
|
|
935
|
+
<p>Values are expressed as frequencies (%) or as
|
|
936
|
+
mean ± standard deviations.
Abbreviations:
|
|
937
|
+
AHM, antihypertensive medication; CLM, cholesterol lowering
|
|
938
|
+
medication.</p>
|
|
939
|
+
<fn id="BRB3-2019-12-0787-tfn2">
|
|
940
|
+
<label>
|
|
941
|
+
<sup>a</sup>
|
|
942
|
+
</label>
|
|
943
|
+
<p>Fisher’s exact test.
|
|
944
|
+
<sup>b</sup> Less than 600 g of fruit and
|
|
945
|
+
vegetables per day, fish for dinner less than twice per week.
|
|
946
|
+
<sup>c</sup> More than 7 drinks per week in women/more than 14
|
|
947
|
+
drinks per week in men.
|
|
948
|
+
<sup>d</sup> Less than 30 min of moderate
|
|
949
|
+
physical activity per day.
|
|
950
|
+
</p>
|
|
951
|
+
</fn>
|
|
952
|
+
<p/>
|
|
953
|
+
</table-wrap-foot>
|
|
954
|
+
</table-wrap>
|
|
955
|
+
<p>Regarding vascular complications and death, we found 32 events in 22 patients
|
|
956
|
+
after a median of 65 months. Median time to first event was 26 months (IQR:
|
|
957
|
+
4–49) with a median of 44 months (IQR: 11–49) in the intervention
|
|
958
|
+
group and 19 months (IQR: 4–37) in the control group
|
|
959
|
+
(
|
|
960
|
+
<italic>p</italic> = 0.32). All in all, we found 11 events in
|
|
961
|
+
nine patients in the intervention group: two recurrent strokes, three cases of
|
|
962
|
+
TIA, and six patients died versus 21 events in 13 patients in the control group:
|
|
963
|
+
seven recurrent strokes, five cases of TIA, one MI, and seven patients died
|
|
964
|
+
(
|
|
965
|
+
<italic>p</italic> = 0.49).
|
|
966
|
+
</p>
|
|
967
|
+
</sec>
|
|
968
|
+
</sec>
|
|
969
|
+
<sec id="BRB3-2019-12-0787-sec4" sec-type="discussion">
|
|
970
|
+
<label>4</label>
|
|
971
|
+
<title>DISCUSSION</title>
|
|
972
|
+
<p>In this randomized clinical trial, a larger proportion of patients in the
|
|
973
|
+
intervention group compared to controls had BP within the above-mentioned limits and
|
|
974
|
+
the study fulfilled the aim of the primary endpoint.</p>
|
|
975
|
+
<p>A systematic review of interventions aimed at modifiable risk factor control for
|
|
976
|
+
secondary prevention of stroke revealed improvement in achieving BP target.
|
|
977
|
+
<xref
|
|
978
|
+
ref-type="bibr" rid="BRB3-2019-12-0787-bib-0022">
|
|
979
|
+
<sup>22</sup>
|
|
980
|
+
</xref> However,
|
|
981
|
+
as opposed to our study the review showed no significant change in systolic og
|
|
982
|
+
diastolic BP.
|
|
983
|
+
</p>
|
|
984
|
+
<p>In a study of integrated care with five prearranged visits to patients’
|
|
985
|
+
general practitioner versus usual care systolic BP at target set to 140 mm Hg was
|
|
986
|
+
found in 75% versus 58% at 12-month follow up.
|
|
987
|
+
<xref ref-type="bibr"
|
|
988
|
+
rid="BRB3-2019-12-0787-bib-0019">
|
|
989
|
+
<sup>19</sup>
|
|
990
|
+
</xref> We set individual targets
|
|
991
|
+
for BP according to patients’ type of stroke, comorbidities and age. This is
|
|
992
|
+
well in line with recommendations given by European Society of Hypertension,
|
|
993
|
+
<xref
|
|
994
|
+
ref-type="bibr" rid="BRB3-2019-12-0787-bib-0023">
|
|
995
|
+
<sup>23</sup>
|
|
996
|
+
</xref> but as
|
|
997
|
+
stated by Boan et al., not quite in accordance with international stroke guidelines.
|
|
998
|
+
<xref ref-type="bibr" rid="BRB3-2019-12-0787-bib-0024">
|
|
999
|
+
<sup>24</sup>
|
|
1000
|
+
</xref>
|
|
1001
|
+
</p>
|
|
1002
|
+
<p>In a study where patients with minor stroke were randomized to six clinic visits by a
|
|
1003
|
+
pharmacist (intervention) or by a nurse (active control) aiming at treating both BP
|
|
1004
|
+
and LDL-cholesterol to target, 43% of patients in the pharmacist-led clinic met
|
|
1005
|
+
those two targets and so did 31% in the nurse-led clinic.
|
|
1006
|
+
<xref ref-type="bibr"
|
|
1007
|
+
rid="BRB3-2019-12-0787-bib-0025">
|
|
1008
|
+
<sup>25</sup>
|
|
1009
|
+
</xref> In our study this combined
|
|
1010
|
+
endpoint was met in 22 (61%) of patients in the intervention group. Regarding BP in
|
|
1011
|
+
control 80% of patients in the pharmacist led clinic had systolic BP in control
|
|
1012
|
+
after six months versus 90% in the nurse led clinic. This is a far greater
|
|
1013
|
+
proportion than the 69% in our study. However, almost two thirds of patients had a
|
|
1014
|
+
baseline BP within the limits. The opposite was the case in our study with two
|
|
1015
|
+
thirds presenting with elevated BP. Both studies show that a dedicated follow up
|
|
1016
|
+
with stepwise escalation of preventive medication may be the way to reach the
|
|
1017
|
+
targets of the two important risk factors for recurrent stroke. In both studies
|
|
1018
|
+
five-six visits were needed, which is far beyond our usual treatment. However,
|
|
1019
|
+
despite visits to the outpatient clinic as well as to the general practitioner the
|
|
1020
|
+
proportion of patients with unchanged medication since discharge in the control
|
|
1021
|
+
group illustrate the necessity of frequent visits to a dedicated preventive
|
|
1022
|
+
facility. Considering the preventive effect of BP lowering, and - though
|
|
1023
|
+
insignificant - the difference in time to first event as well as the smaller
|
|
1024
|
+
proportion of events in the intervention group as found in our study, it may be well
|
|
1025
|
+
worth the time and resources for patients, their relatives and society.
|
|
1026
|
+
</p>
|
|
1027
|
+
<sec id="BRB3-2019-12-0787-sec4.1">
|
|
1028
|
+
<label>4.1</label>
|
|
1029
|
+
<title>Strengths and limitations</title>
|
|
1030
|
+
<p>Our study has some limitations. Most participants had a minor stroke and patients
|
|
1031
|
+
had to be independent and without severe cognitive deficits, which is not
|
|
1032
|
+
representative of a general stroke population. With only 73 participants caution
|
|
1033
|
+
is called for in the drawing of conclusions from the results. Nonetheless, we
|
|
1034
|
+
decided to reorganize the outpatient clinic of our stroke unit as of October
|
|
1035
|
+
2014 implementing strategies of the present study.</p>
|
|
1036
|
+
<p>The strength of the study is the individual target for BP taking into account the
|
|
1037
|
+
diagnosis of stroke as well as important comorbidity as recommended by Boan et
|
|
1038
|
+
al.
|
|
1039
|
+
<xref ref-type="bibr" rid="BRB3-2019-12-0787-bib-0024">
|
|
1040
|
+
<sup>24</sup>
|
|
1041
|
+
</xref>
|
|
1042
|
+
Five-year follow up on vascular complications and death is another important
|
|
1043
|
+
advantage.
|
|
1044
|
+
</p>
|
|
1045
|
+
</sec>
|
|
1046
|
+
</sec>
|
|
1047
|
+
<sec id="BRB3-2019-12-0787-sec5" sec-type="conclusions">
|
|
1048
|
+
<label>5</label>
|
|
1049
|
+
<title>CONCLUSIONS</title>
|
|
1050
|
+
<p>In conclusion, the feasibility study has demonstrated that timely follow up of stroke
|
|
1051
|
+
patients in a dedicated preventive outpatient clinic may result in BP and
|
|
1052
|
+
cholesterol treated to target in most patients. To some extent it may postpone time
|
|
1053
|
+
to stroke recurrence, MI and death.</p>
|
|
1054
|
+
</sec>
|
|
1055
|
+
</body>
|
|
1056
|
+
<back>
|
|
1057
|
+
<ack>
|
|
1058
|
+
<title>ACKNOWLEDGMENTS</title>
|
|
1059
|
+
<p>None.
|
|
1060
|
+
<xref ref-type="bibr" rid="BRB3-2019-12-0787-bib-0021">
|
|
1061
|
+
<sup>21</sup>
|
|
1062
|
+
</xref>
|
|
1063
|
+
</p>
|
|
1064
|
+
</ack>
|
|
1065
|
+
<fn-group>
|
|
1066
|
+
<fn fn-type="conflict">
|
|
1067
|
+
<p content-type="fn-title">CONFLICT OF INTEREST</p>
|
|
1068
|
+
<p>None.</p>
|
|
1069
|
+
</fn>
|
|
1070
|
+
</fn-group>
|
|
1071
|
+
<sec sec-type="data-availability">
|
|
1072
|
+
<title>DATA AVAILABILITY</title>
|
|
1073
|
+
<p>The data that support the findings of this study are not available due to national
|
|
1074
|
+
privacy or ethical restrictions.</p>
|
|
1075
|
+
</sec>
|
|
1076
|
+
</back>
|
|
1077
|
+
</article>
|