نتایج جستجو برای: ضریب apgar

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

Journal: :Revista Médica Clínica Las Condes 2012

2017

Despite popular belief, exercise while pregnant does not initiate labor, or preterm labor. Exercise is associated with delivering closer to the due date. Further, maternal exercise is associated with either no change, or shorter labor and delivery overall. Women who exercised had less complications during labor and delivery than those who did not exercise. More importantly, measures of the fetu...

2008
Barbara P Yawn Susan Bertram Peter Wollan

OBJECTIVE Primary care asthma management is often not compatible with national evidence-based guidelines. The objective of this study was to assess the feasibility and impact of the Asthma APGAR tools to enhance implementation of asthma guideline-compatible management in primary care practices. SUBJECTS Twenty-four primary care practices across the US. METHODS This is a mixed methods study....

Journal: :The British journal of psychiatry : the journal of mental science 2013
Hans Mørch Jensen Randi Grøn Øjvind Lidegaard Lars Henning Pedersen Per Kragh Andersen Lars Vedel Kessing

BACKGROUND Use of antidepressants during pregnancy has been associated with a low Apgar score in infants but a contribution from the underlying depressive disorder might influence this association. AIMS To estimate the effects of maternal depression and use of antidepressants during pregnancy on low Apgar scores (<7) 5 min after birth. METHOD Register study on all pregnant women in Denmark ...

2018

In 1952 Virginia Apgar, a physician at the Sloane Women?s Hospital in New York City, New York, created the Apgar score as a method of evaluating newborn infants? health to determine if they required medical intervention. The score included five separate categories, including heart rate, breathing rate, reaction to stimuli, muscle activity, and color. An infant received a score from zero to two ...

2015
Mario Rüdiger Nicole Braun Jacob Aranda Marta Aguar Renate Bergert Alica Bystricka Gabriel Dimitriou Khaled El-Atawi Sascha Ifflaender Philipp Jung Katarina Matasova Violeta Ojinaga Zita Petruskeviciene Claudia Roll Jens Schwindt Burkhard Simma Nanette Staal Gloria Valencia Maria Gabriela Vasconcellos Maie Veinla Máximo Vento Benedikt Weber Anke Wendt Sule Yigit Heinz Zotter Helmut Küster

BACKGROUND Since an objective description is essential to determine infant's postnatal condition and efficacy of interventions, two scores were suggested in the past but weren't tested yet: The Specified-Apgar uses the 5 items of the conventional Apgar score; however describes the condition regardless of gestational age (GA) or resuscitative interventions. The Expanded-Apgar measures interventi...

Journal: :Journal of the College of Physicians and Surgeons--Pakistan : JCPSP 2008
Saadia Sultana Muhammad Nadim Akbar Khan Khalida Adeeb Khanum Akhtar Muhammad Aslam

OBJECTIVE To determine the accuracy of antepartum Amniotic Fluid Index (AFI) of < or = 5 cm as a predictor of adverse outcome at birth in high-risk pregnancies. STUDY DESIGN Cross-sectional study. PLACE AND DURATION OF STUDY Obstetrics and Gynaecology Unit I, Holy Family Hospital and Railway Teaching Hospital Complex, Rawalpindi, from February 2003 to January 2004. METHODOLOGY One hundred...

2016
Deepak Sharma Mukesh Choudhary Mamta Lamba Sweta Shastri

OBJECTIVE The objective of this study is to determine the correlation of Apgar score with asphyxial hepatic injury and neonatal mortality in moderately and severely asphyxiated newborns. MATERIAL AND METHODS This is a secondary analysis of our prospective observational case-controlled study. Sixteen neonates with severe birth asphyxia (five-minute Apgar ≤3) were compared with either 54 modera...

Journal: :Mayo Clinic proceedings 2014
Matthew A Rank Susan Bertram Peter Wollan Roy A Yawn Barbara P Yawn

OBJECTIVE To compare asthma control assessment using the Asthma APGAR system, a tool developed by primary care clinicians, in a multicenter primary care sample with the Asthma Control Test (ACT™)/Childhood Asthma Control Test (CACT™), a tool developed by asthma specialists. PATIENTS AND METHODS This is a substudy of a multicenter, randomized, controlled pragmatic trial that tests the effectiv...

2011
Esmat Rahi Mohammad Reza Baneshi Ehsan Mirkamandar Saiedeh Haji Maghsoudi Azam Rastegari

BACKGROUND Addiction in pregnant women causes complications such as abortion, asphyxia and cerebral and physical problems. APGAR score assesses vital signs and birth weight and represents the physical and brain growth of newborns. In this study, the effects of opium addiction in mothers on birth weight and APGAR scores of neonates were discussed. METHODS This study analytic, descriptive study...

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

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

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