نتایج جستجو برای: prescription practice

تعداد نتایج: 419747  

Journal: :LDI issue brief 1999
A L Hillman M V Pauly J J Escarce K Ripley M Gaynor J Clouse R Ross

This study estimates the impact of patient financial incentives on the use and cost of prescription drugs in the context of differing physician payment mechanisms. A large data set was developed that covers persons in managed care who pay varying levels of cost sharing and whose physicians are compensated under two different models: independent practice association (IPA)-model and network-model...

2016
Nicole Boffin Jerome Antoine Sarah Moreels Simeon Wanyama Karin De Ridder Lieve Peremans Marc Vanmeerbeek Viviane Van Casteren

BACKGROUND General Practitioners (GPs) are well placed to care for patients with (chronic) substance use problems. This pilot was carried out to study the feasibility and usefulness of a continuous surveillance of substance use problems among general practice patients. The objectives were (i) to describe variables with missing values exceeding 1% and whether patients were reported without subst...

Journal: :BMJ 1993
F W van der Waals J Mohrs M Foets

OBJECTIVE To analyse sex differences among recipients of benzodiazepines in Dutch general practice. DESIGN Study of consultations and associated interventions as recorded in the Dutch national survey of general practice. SETTING Practices of 45 general practitioners monitored during 1 April to 30 June 1987. SUBJECTS 61,249 patients (29,035 (47.4%) men in the age groups 19-44, 45-64, and 6...

2014
Jan C Frich Espen Saxhaug Kristoffersen Christofer Lundqvist

BACKGROUND Medication-overuse headache (MOH) is common in the general population, and most patients are managed in primary health care. Brief Intervention (BI) has been used as a motivational technique for patients with drug and alcohol overuse, and may a have role in the treatment of MOH. AIM To explore GPs' experiences using BI in the management of patients with MOH. DESIGN AND SETTING Qu...

2015
Sherilee L. Harper Victoria L. Edge James Ford M. Kate Thomas David Pearl Jamal Shirley Scott A. McEwen

BACKGROUND The incidence of self-reported acute gastrointestinal illness (AGI) in Rigolet, Nunatsiavut, and Iqaluit, Nunavut, is higher than reported elsewhere in Canada; as such, understanding AGI-related healthcare use is important for healthcare provision, public health practice and surveillance of AGI. OBJECTIVES This study described symptoms, severity and duration of self-reported AGI in...

Journal: :BMJ 1990
M W Taylor L D Ritchie R J Taylor M P Ryan N I Paterson R Duncan K G Brotherston

OBJECTIVE To investigate a method of assessing the extent of routine patient data held on computer by Scottish general practitioners. DESIGN An "electronic questionnaire" in the form of an interrogation questionnaire was used to extract a subset of data from practice computers running a standard software package (the general practice administrative system for Scotland, GPASS). The data were r...

2012
Michiel B. Haeseker Nicole H. T. M. Dukers-Muijrers Christian J. P. A. Hoebe Cathrien A. Bruggeman Jochen W. L. Cals Annelies Verbon

BACKGROUND Antibiotic consumption is associated with adverse drug events (ADE) and increasing antibiotic resistance. Detailed information of antibiotic prescribing in different age categories is scarce, but necessary to develop strategies for prudent antibiotic use. The aim of this study was to determine the antibiotic prescriptions of different antibiotic classes in general practice in relatio...

Journal: :The West Indian medical journal 2007
M Gossell-Williams

In Jamaica, the 1993 amendment to the Pharmacy Act allows pharmacists to offer patients generic substitutions for innovator brands; however, there were reservations among physicians about this policy implementation. The success of the amendment may be influenced by the confidence of physicians in the therapeutic equivalence of generics, especially since the act also allows physicians to indicat...

Journal: :The British journal of general practice : the journal of the Royal College of General Practitioners 1997
C J Hawley S J Quick M J Harding H Pattinson T Sivakumaran

About 1% of patients in general practice take antidepressants for long periods. Many receive repeat prescriptions, without review. It might be assumed that these patients are well and are on adequate maintenance treatment. Our findings refute this assumption; of 78 patients on long-term repeats, only a third were in remission and a fifth had Beck Depression Inventory scores suggesting persistin...

Journal: :Scandinavian journal of primary health care 2008
Wim Gorgels Richard Oude Voshaar Audrey Mol Eloy Van De Lisdonk Jan Mulder Henk Van Den Hoogen Anton Van Balkom Marinus Breteler Frans Zitman

OBJECTIVE The efficacy of programmes to reduce long-term benzodiazepine use could be compromised by subsequent increases in contacts with the family practice. In this study the hypothesis was tested as to whether participation in a benzodiazepine discontinuation programme affects the frequency of contacts with the family practice. DESIGN A controlled stepped-care intervention programme to dec...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->