نتایج جستجو برای: maternal smoking

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

Journal: :Archives of environmental health 1997
J F Orlebeke D L Knol F C Verhulst

In this article, the authors investigated the effect of maternal smoking during pregnancy on behavioral problems, which were not mediated by lower birth weight, in offspring at 3 y of age. The authors used the Child Behavior Checklist for ages 2-3 y (CBCL/2-3; Achenbach, Edelbrock and Howell) to assess behavioral problems in 1,377 2- to 3-y-old healthy twin pairs. Soon after the birth of twins,...

2016
Maijakaisa Harju Leea Keski-Nisula Leena Georgiadis Seppo Heinonen

BACKGROUND To evaluate the association between maternal and paternal smoking during pregnancy, and asthma among offspring. METHODS We conducted a hospital-based birth retrospective observational birth cohort study in a University-based Obstetrics and Gynecology Department, Kuopio University Hospital, Finland. 39 306 women, delivering between 1989 and 2006, were linked to the national register...

Journal: :Tobacco control 2006
Abdullah Al Mamun Frances V O'Callaghan Rosa Alati Michael O'Callaghan Jake M Najman Gail M Williams William Bor

OBJECTIVE To examine the association between maternal smoking during pregnancy and the development of smoking behaviour patterns among young adult offspring. METHOD Data were from the Mater-University of Queensland Study of Pregnancy (MUSP), a birth cohort of 7223 mothers and children enrolled in Brisbane, Australia, in 1981. The development of smoking behaviours (early or late onset, or comb...

Journal: :Obstetrics and gynecology 2005
Ira M Bernstein Joan A Mongeon Gary J Badger Laura Solomon Sarah H Heil Stephen T Higgins

OBJECTIVE Maternal smoking has been associated with a reduction in newborn birth weight. We sought to estimate how the pattern of maternal smoking throughout pregnancy influences newborn size. METHODS One hundred sixty pregnant smoking women were enrolled in a prospective study. We collected data on maternal age, education, prepregnancy body mass index, and parity, as well as alcohol and illi...

2013
Sol Pía Juárez Juan Merlo

Maternal smoking during pregnancy (SDP) seems associated with reduced birthweight in the offspring. This observation, however, is based on conventional epidemiological analyses, and it might be confounded by unobserved maternal characteristics related to both smoking habits and offspring birth weight. Therefore, we apply a quasi-experimental sibling analysis to revisit previous findings. Using ...

2014
Christina A. Markunas Zongli Xu Sophia Harlid Paul A. Wade Rolv T. Lie Jack A. Taylor Allen J. Wilcox

BACKGROUND Maternal smoking during pregnancy is associated with significant infant morbidity and mortality, and may influence later disease risk. One mechanism by which smoking (and other environmental factors) might have long-lasting effects is through epigenetic modifications such as DNA methylation. OBJECTIVES We conducted an epigenome-wide association study (EWAS) investigating alteration...

2011
Alicia Matijasevich Marie-Jo Brion Ana M Menezes Aluísio J D Barros Iná S Santos Fernando C Barros

OBJECTIVE To explore the effects of maternal smoking during pregnancy on offspring growth using three approaches: (1) multiple adjustments for socioeconomic and parental factors, (2) maternal-paternal comparisons as a test of putative intrauterine effects and (3) comparisons between two birth cohort studies. METHODS Population-based birth cohort studies were carried out in Pelotas, Brazil, in...

2017
Keiko Tanaka Yoshihiro Miyake Shinya Furukawa Masashi Arakawa

BACKGROUND Evidence regarding the independent and additive effects of both pre- and postnatal smoking exposure on the risk of wheeze in children is limited. The purpose of this prospective pregnancy birth cohort study was to examine the association between prenatal and postnatal tobacco smoke exposure during the first year of life and the risk of wheeze in Japanese children aged 23 to 29 months...

Journal: :American journal of epidemiology 2008
Andrea J Sharma Mary E Cogswell Ruowei Li

Studies suggest that children exposed to cigarette smoke in utero are at risk of becoming obese. Few researchers have evaluated the dose-response association between maternal smoking during pregnancy and childhood obesity or whether this association varies by maternal race/ethnicity. The authors obtained retrospective cohort data by linking records from the Pregnancy Nutrition Surveillance Syst...

Journal: :Thorax 2009
M R Hayatbakhsh S Sadasivam A A Mamun J M Najman G M Williams M J O'Callaghan

BACKGROUND AND AIMS There is a paucity of evidence about whether exposure to antenatal smoking impacts on offspring's lung function in early adulthood. This study aimed to examine whether (1) in utero exposure to maternal smoking is related to poorer respiratory functioning in early adulthood; (2) the impact of prenatal smoking is independent of postnatal maternal smoking; and (3) the link betw...

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

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

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