نتایج جستجو برای: substance dependence

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

Journal: :Psychological medicine 2015
J D Grant M T Lynskey P A F Madden E C Nelson L R Few K K Bucholz D J Statham N G Martin A C Heath A Agrawal

BACKGROUND Genetic influences contribute significantly to co-morbidity between conduct disorder and substance use disorders. Estimating the extent of overlap can assist in the development of phenotypes for genomic analyses. METHOD Multivariate quantitative genetic analyses were conducted using data from 9577 individuals, including 3982 complete twin pairs and 1613 individuals whose co-twin wa...

2006
Ilana B. Crome Roger Bloor Betsy Thom Ilana Crome

A wide range of population-based and clinical studies in the literature consistently demonstrate that substance use/dependence is one of the most common mental health-related disorders (Cohen et al, 1999; Coulthard et al, 2002; Crawford et al, 2003). A national study of psychiatric comorbidity in the UK found that the prevalence of dependence on any drug was 4% and dependence on cannabis was re...

Journal: :Psychological medicine 2006
Julia D Grant Jeffrey F Scherrer Michael T Lynskey Michael J Lyons Seth A Eisen Ming T Tsuang William R True Kathleen K Bucholz

BACKGROUND Early alcohol use is associated with abuse and dependence of licit and illicit substances later in life. The role of genetic and environmental factors in this association is not conclusive. METHOD In 1992, data on substance use, abuse/dependence and psychiatric disorders were collected from 8169 male twin members of the Vietnam Era Twin Registry. The interview obtained age of onset...

Journal: :JAMA 2004
Edward V Nunes Frances R Levin

CONTEXT Depression and substance abuse are common and costly disorders that frequently co-occur, but controversy about effective treatment for patients with both disorders persists. OBJECTIVE To conduct a systematic review and meta-analysis to quantify the efficacy of antidepressant medications for treatment of combined depression and substance use disorders. DATA SOURCES PubMed, MEDLINE, a...

Journal: :European psychiatry : the journal of the Association of European Psychiatrists 2011
M Melchior M Choquet Y Le Strat C Hassler P Gorwood

We tested the hypothesis that socioeconomic disadvantage exacerbates the intergenerational transmission of substance dependence. Among 3056 community-based young adults (18-22 years, 2007), the prevalence of alcohol dependence (WHO AUDIT, 5.8%) and cannabis dependence (DSM IV criteria, 7.3%) was doubled in the presence of combined parental alcohol dependence and socioeconomic disadvantage.

2014
Sharon Levy Slavica K. Katusic Robert C. Colligan Amy L. Weaver Jill M. Killian Robert G. Voigt William J. Barbaresi

BACKGROUND Adolescents with attention-deficit/hyperactivity disorder (ADHD) are known to be at significantly greater risk for the development of substance use disorders (SUD) compared to peers. Impulsivity, which could lead to higher levels of drug use, is a known symptom of ADHD and likely accounts, in part, for this relationship. Other factors, such as a biologically increased susceptibility ...

Journal: :Experimental and clinical psychopharmacology 2007
C W Lejuez Marina A Bornovalova Elizabeth K Reynolds Stacey B Daughters John J Curtin

Female inner-city substance users evidence greater crack/cocaine use and are more likely to be dependent on this drug than on any other drug. Additionally, female inner-city substance users evidence greater crack/cocaine use and are more likely to be dependent on this drug than their male counterparts, despite no consistent difference demonstrated in use and dependence across other drugs. Becau...

Journal: :Drug and alcohol dependence 2012
Katelijne van Emmerik-van Oortmerssen Geurt van de Glind Wim van den Brink Filip Smit Cleo L Crunelle Marije Swets Robert A Schoevers

CONTEXT Substance use disorders (SUD) are a major public health problem. Attention deficit hyperactivity disorder (ADHD) is a comorbid condition associated with both onset and prognosis of SUD. Prevalence estimates of ADHD in SUD vary significantly. OBJECTIVE To obtain a best estimate of the prevalence of ADHD in SUD populations. DATA SOURCES A literature search was conducted using MEDLINE,...

Journal: :The Journal of the American Board of Family Practice 1992
M J Landry D E Smith D R McDuff O L Baughman

BACKGROUND Primary care physicians prescribe benzodiazepines for the treatment of anxiety. Although most patients use the benzodiazepines appropriately, some patients experience benzodiazepine abuse, addiction, or physical dependence, each one of which is a distinct syndrome. Benzodiazepine dependence, which relates to the development of tolerance and an abstinence syndrome, can be produced by ...

Journal: :Journal of pharmacological and toxicological methods 2011
Paul Moser Toni Wolinsky Vincent Castagné Mark Duxon

Preclinical assessment of drug abuse and dependence has been the subject of several recent regulatory guidelines. Both the European and US authorities recommend a tiered approach and are generally aligned on the methods which should be used. The first tier simply compares the pharmacology of the novel substance to known drugs of abuse. The second tier aims to identify abuse and dependence liabi...

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

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

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"; } -->