نتایج جستجو برای: low birth weights

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

2012
R Vazirinejad N Masoodpour A Puyanfar

BACKGROUND This study aimed to assess the incidence and survival rates of neonates weighing less than 2500g for duration of the first 28 days in an Iranian community. METHODS In this prospective longitudinal study, all neonates with birth weight less than 2500g were selected from the list of all neonates born in the only public-sector referral hospital, for a six months period. The weight of ...

Journal: :international journal of pediatrics 0
saba naghavi 1islamic azad university, najafabad branch, shariati hospital, isfahan, iran. sadegh baradaran mahdavi student research committee, school of medicine, isfahan university of medical sciences, isfahan, iran. bita moradi biostatistics department, child growth and development research center, research institute for primordial prevention of non-communicable disease, isfahan university of medical sciences, isfahan, iran. mohammad hasan tajadini biotechnology department, applied physiology research center, isfahan university of medical sciences, isfahan, iran. roya kelishadi pediatrics department, child growth and development research center, research institute for primordial prevention of non-communicable disease, isfahan university of medical sciences, isfahan, iran.

background: maternal nutrition during pregnancy affects the birth weight of neonates. some of the undesirable pregnancy outcomes are linked to lower birth weights. this study aimed to assess the relationship between maternal dietary patterns, weight gain during pregnancy and nitric oxide (no), as an endothelial relaxing factor, and the possible effects on birth weight.materials and methods: at ...

Journal: :journal of fasting and health 0
nahid sarafraz obstetrics department, kashan university of medical sciences, kashan, i.r. iran mahboobeh kafaei atrian department of health promotion, school of health (campus), iran university of medical sciences ,tehran, iran fatemeh abbaszadeh obstetrics department, kashan university of medical sciences, kashan, i.r. iran azam bagheri obstetrics department, kashan university of medical sciences, kashan, i.r. iran

aim &background;: muslims fast from sunrise to sunset during ramadan, the 9th lunar month. the duration of fasting varies from 13 to 18 hrs per day. fasting individuals abstain from drinking liquids and eating foods. manypregnant women and gynecologists are concerned about the possible complicationsassociated with fasting and effects on fetal health. the aim of this study was to determine the e...

Journal: :Pediatrics 2002
Per Nafstad Sven O Samuelsen Lorentz M Irgens Tor Bjerkedal

OBJECTIVES To estimate the association between birth weight and hearing impairment among Norwegians born between 1967 and 1993, taking other pregnancy-related conditions into consideration. METHODS A cohort study was conducted of all Norwegian live births from 1967 to 1993 (n = 1 548 429) linking information of the Medical Birth Registry of Norway and the register for the National Insurance A...

Journal: :American journal of epidemiology 2001
R N Avchen K G Scott C A Mason

Mortality rates have declined for low birth weight and extremely low birth weight infants. Yet, the consequences of survival for these children may be adverse developmental outcomes. Few studies to date have examined school-age outcomes for these children. The participants in this study represented a population-based cohort of Florida children who were born between 1982 and 1984 and who were re...

Journal: :International Journal of Biomedical Research 2014

2017
ANITHA JAYAKUMAR DEEPA GURUNATHAN

WHO defined low birth weight (regardless of the gestational age ) as weighing less than 2500g.. Low birth weight neonates are further subdivided into very low birth weight infants, with birth weights less than 1500g and extremely low birth weight infants, with birth weights less than 1000g. Early childhood caries due to malnutrition is still a common dental health problem in developing countrie...

Journal: :Diabetes 2000
Y Terauchi N Kubota H Tamemoto H Sakura R Nagai Y Akanuma S Kimura T Kadowaki

Low birth weight has been reported to be associated with impaired insulin secretion and insulin resistance. It has been proposed that this association results from fetal programming in response to the intrauterine environment (the thrifty phenotype hypothesis). To elucidate the relationship between birth weight and genetically determined defects in insulin secretion, we measured the birth weigh...

F Moghaddam Tabrizi , S Barjasteh ,

Back ground Anemia in pregnancy is associated with increased rates of maternal and perinatal mortality, premature delivery, low birth weight, and other adverse outcomes Materials and Methods A prospective study was conducted on 1405 Iranian pregnant women who delivered during 2015. Blood was collected from all the subjects to measure the hemoglobin (Hb) during 16-19 weeks, 22-24 weeks,...

Journal: :Journal of epidemiology and community health 2006
Chris Dibben Maria Sigala Alison Macfarlane

OBJECTIVE To explore the relationship between low and very low birth weights, mother's age, individual socioeconomic status and area deprivation. DESIGN Analysis of the incidence of low and very low birth weights by area deprivation, maternal age, social class of household and estimated income. SETTING England 1996-2000. SUBJECTS 2 894 440 singleton live births and the 10% sample of these...

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

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

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