نتایج جستجو برای: kappa distribution

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

Journal: :Astronomy and Astrophysics 2022

Given their uniqueness, the Ulysses data can still provide us with valuable new clues about properties of plasma populations in solar wind, and, especially, variations heliographic coordinates. We revisit electron reported by SWOOPS instrument on-board spacecraft between 1990 to early 2008. These observations reveal velocity distributions out thermal equilibrium, anisotropies (e.g., parallel dr...

Journal: :iranian journal of microbiology 0
neda saffari department of biotechnology, faculty of biological sciences, alzahra university, tehran, ir iran siavosh salmanzadeh-ahrabi ahya abdi-ali mohsen rezaei-hemami

background and objectives: antibacterial susceptibility testing of clinical bacterial isolates through disk diffusion method plays a major role in antibacterial treatment. one of the main factors affecting the result of these tests is the type, structure and quality of the disks. the main objective of this study was to compare the agreement of antibiotic disks originated from three companies on...

2008
Lars S. Hanson Richard Vogel

Choosing a probability distribution to represent the precipitation depth at various durations has long been a topic of interest in hydrology. Early study into the distribution of wet-day daily rainfall has identified the 2-parameter Gamma (G2) distribution as the most likely candidate distribution based on traditional goodness of fit tests. This paper uses probability plot correlation coefficie...

Journal: :bulletin of emergency and trauma 0
faramarz pourasghar road traffic injury research center and department of medical informatics, school of management and medical informatics, tabriz university of medical sciences, tabriz, iran amin daemi health management and economics research center, iran university of medical sciences, tehran, iran and iranian center of excellence in health management, tabriz university of medical sciences, tabriz, iran jafar sadegh tabrizi health services management research center, school of health management and medical informatics, tabriz university of medical sciences, tabriz, iran alireza ala department of emergency medicine, school of medicine, tabriz university of medical sciences, tabriz, iran

objective: to examine the inter-rater reliability of triages performed by the electronic triage system (ets) which has recently developed and used in hospital emergency department (ed). methods: this cross-sectional study was conducted prospectively and studied 408 visitors of tabriz imam reza hospital’s ed. the variables of interest were age, sex, nurse-assigned triage category, physician-assi...

Journal: :مجله علوم اعصاب شفای خاتم 0
rezvan vatankhah department of humanistic science, persian language and literature faculty, isfahan university, isfahan, iran. mohammad vatankhah department of education and psychology, clinical psychology faculty, shahid chamran university, ahvaz, iran.

the purpose of this study was to investigate the content analysis of recent persian songs (2013-2014) according to emotions of anxiety, depression, anger, fear and happiness. the research method was content analysis type. the sample consisted of 50 persian songs from 2013 to 2014 which they were selected by simple sampling. to analysis of data, massages were categorized in emotions of anxiety, ...

Journal: :Radiology 2006
Elizabeth Lazarus Martha B Mainiero Barbara Schepps Susan L Koelliker Linda S Livingston

PURPOSE To retrospectively evaluate interobserver variability between breast radiologists by using terminology of the fourth edition of the Breast Imaging Reporting and Data System (BI-RADS) to categorize lesions on mammograms and sonograms and to retrospectively determine the positive predictive value (PPV) of BI-RADS categories 4a, 4b, and 4c. MATERIALS AND METHODS Institutional review boar...

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

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

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