نتایج جستجو برای: cap class area proportion

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

Background The overall proportion of female physician is increasing worldwide. However, its ratio exhibits a substantial diversity among each member country of Organisation for Economic Co-operation and Development (OECD). This study aimed to reveal the social factors of countries associated with the percentage of female physicians....

2007
M. Brittnacher M. Fillingim G. Parks J. Spann

The area of the polar cap a.s a function of local time and substorm phase was measured using images from the Polar Ultraviolet Imager (UVI) for different interplanetary magnetic field (IMF) orientations during three substorms in January 1997. We measured changes in the polar cap area and motion of the poleward and equatorward boundary of the auroral oval. It was found that the polar cap boundar...

Journal: :American journal of physiology. Heart and circulatory physiology 2008
Jacques Ohayon Gérard Finet Ahmed M Gharib Daniel A Herzka Philippe Tracqui Julie Heroux Gilles Rioufol Melanie S Kotys Abdalla Elagha Roderic I Pettigrew

Fibrous cap thickness is often considered as diagnostic of the degree of plaque instability. Necrotic core area (Core(area)) and the arterial remodeling index (Remod(index)), on the other hand, are difficult to use as clinical morphological indexes: literature data show a wide dispersion of Core(area) thresholds above which plaque becomes unstable. Although histopathology shows a strong correla...

Journal: :Animal Conservation 2022

In Europe, Natura 2000 sites should protect threatened target species and networks of habitats. The management grasslands is often financed by subsidized grazing as part the Common Agricultural Policy (CAP). We studied extent CAP for how this affects a butterfly (the marsh fritillary) floral resources. Based on extensive capture-mark-release studies from 2 years in >550 ha grid cells 225 km2 la...

2013
Timothy R. Rebbeck Susan S. Devesa Bao-Li Chang Clareann H. Bunker Iona Cheng Kathleen Cooney Rosalind Eeles Pedro Fernandez Veda N. Giri Serigne M. Gueye Christopher A. Haiman Brian E. Henderson Chris F. Heyns Jennifer J. Hu Sue Ann Ingles William Isaacs Mohamed Jalloh Esther M. John Adam S. Kibel LaCreis R. Kidd Penelope Layne Robin J. Leach Christine Neslund-Dudas Michael N. Okobia Elaine A. Ostrander Jong Y. Park Alan L. Patrick Catherine M. Phelan Camille Ragin Robin A. Roberts Benjamin A. Rybicki Janet L. Stanford Sara Strom Ian M. Thompson John Witte Jianfeng Xu Edward Yeboah Ann W. Hsing Charnita M. Zeigler-Johnson

Prostate cancer (CaP) is the leading cancer among men of African descent in the USA, Caribbean, and Sub-Saharan Africa (SSA). The estimated number of CaP deaths in SSA during 2008 was more than five times that among African Americans and is expected to double in Africa by 2030. We summarize publicly available CaP data and collected data from the men of African descent and Carcinoma of the Prost...

Journal: :European respiratory review : an official journal of the European Respiratory Society 2016
Michael Burk Karim El-Kersh Mohamed Saad Timothy Wiemken Julio Ramirez Rodrigo Cavallazzi

The advent of PCR has improved the identification of viruses in patients with community-acquired pneumonia (CAP). Several studies have used PCR to establish the importance of viruses in the aetiology of CAP.We performed a systematic review and meta-analysis of the studies that reported the proportion of viral infection detected via PCR in patients with CAP. We excluded studies with paediatric p...

2015
ANCA MESAROS DANIELA CORNEA LIVIU CIOARA DIANA DUDEA MICHAELA MESAROS MINDRA BADEA

INTRODUCTION An attractive facial appearance is considered nowadays to be a decisive factor in establishing successful interactions between humans. In relation to this topic, scientific literature states that some of the facial features have more impact then others, and important authors revealed that certain proportions between different anthropometrical landmarks are mandatory for an attracti...

Introduction: The Sc is an important parameter to monitor unit (MU) calculation in radiation therapy procedure. The aim of this study is to measurement and comparison of head scatter factor (Sc) for 9MV photon beam using the build-up cap and a columnar mini-phantom.   Materials and Methods: The measurements performed using a calibrated ion chamber (Scanditron...

Journal: :Current opinion in structural biology 2004
Catherine L Lawson David Swigon Katsuhiko S Murakami Seth A Darst Helen M Berman Richard H Ebright

Recently determined structures of the Escherichia coli catabolite activator protein (CAP) in complex with DNA, and in complex with the RNA polymerase alpha subunit C-terminal domain (alphaCTD) and DNA, have yielded insights into how CAP binds DNA and activates transcription. Comparison of multiple structures of CAP-DNA complexes has revealed the contributions of direct and indirect readout to D...

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

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

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