نتایج جستجو برای: elevated esr

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

2005
Sung-Hoon Kim Byung-Wook Min Wan-Bae Kim Sung-Soo Park Jun-Won Um Jae-Bok Lee Young-Jae Mok Sang-Yong Choi Hong-Young Moon Bum-Hwan Koo Ju-Han Lee In-Sun Kim

We report here a rare case of mesenteric Castleman's disease presenting as a mesenteric mass. A 13-year-old female child was admitted to our hospital complaining of intermittent vague abdominal pain. She had hypochromic anemia, thrombocytosis and an elevated erythrocyte sedimentation rate (ESR). Ultrasonography and computed tomography indicated an intra- abdominal mass might represent a lymphom...

1997
Kook-Hwan Oh C Ahn JH Park JE Oh HJ Chin JS Han S Kim JG Chi MH Park JS Lee

We present a 30-year-old male patient who was initially diagnosed as minimal change nephrotic syndrome, 5 years later, the patient developed a localized form of idiopathic retroperitoneal fibrosis (IRF). An elevated ESR and concomitant nephrotic syndrome in the patient suggested the immunologic nature of IRF, IRF has been reported in association with collagen diseases and rarely with proliferat...

Journal: :Acta medica Indonesiana 2006
Evy Yunihastuti

A 30 years old male with a history of intravenous drug user came with abdominal pain since 3 weeks before admission. During the last month he lost 10 kg of his body weight. He had mild fever and night sweat, without diarrhea or change in bowel habit. He had not complaint any cough. He looked pale and cachectic. Pulse rate was 100 times per minute and axilla temperature was 37.2 C. Abdominal exa...

Journal: : 2021

Purpose – to investigate the distribution of hematological indices in patients withcardiac insufficiency.Material and methods. Data 26 case histories with diagnosis IHD have beenanalyzed. Patients stable angina pectoris II-III functional class (FC), Diffusecardiosclerosis, complicated 17 syndromic manifestations HF II-IIIFC according New York Heart Association (NYHA), made up group 1, 9 patient...

Journal: :Journal of Clinical Pathology 1978

Journal: :Annals of the rheumatic diseases 1983
M E Ellis S Ralston

A review of 80 patients with the polymyalgia rheumatica/giant cell arteritis (PMR/GCA) syndrome has revealed that the erythrocyte sedimentation rate (ESR) is normal in 22.5% of cases at presentation. Too much reliance on the ESR as a screening test led to delay in diagnosis in 10 patients. Serious complications occurred in 4 patients with a normal or minimally raised ESR. Analysis of follow-up ...

Journal: :Annals of the rheumatic diseases 1989
V Kyle T E Cawston B L Hazleman

The erythrocyte sedimentation rate (ESR) and C reactive protein (CRP) were measured in 74 patients with polymyalgia rheumatica (PMR)/giant cell arteritis (GCA) on presentation, in the first month of treatment, and at long term follow up (up to 177 weeks). Before treatment the ESR was raised (greater than 30 mm/h) in all cases and the CRP was raised (greater than 6 mg/l) in 49/55 cases. The ESR ...

Journal: :Journal of radiation research 2006
Kenichi Tanaka Satoru Endo Alexander Ivannikov Shin Toyoda Eldana Tieliewuhan Kassym Zhumadilov Chuzo Miyazawa Shinji Suga Kazuhide Kitagawa Masaharu Hoshi

The influence of X-ray baggage scanning on electron spin resonance (ESR) dosimetry studies around the Semipalatinsk Nuclear Test Site (SNTS) has been examined at Incheon Airport in Korea, which is a transfer point of the routes from Kazakhstan to Japan. Utilized dosimeters are Japanese human tooth enamel for ESR and glass dosimeters. The difference between the estimated doses with the X-ray sca...

Journal: :journal of research in health sciences 0
peyman eini fariba keramat mehdi hasanzadehhoseinabadi

background: brucellosis is one of the most common infectious diseases in some areas of iran. brucellosis has various clinical manifestations and should be considered in the differential diagnosis of many infectious and non-infectious diseases. the aims of this study were to determine the epidemiological, clinical and laboratory findings of the disease in patients with brucellosis in hamadan, we...

2011
Lilangi S. Ediriwickrema Wajih Zaheer

A 67-year-old gentleman presented to Yale-New Haven Hospital (YNHH) for assessment of a supratherapeutic INR and sacral lesion. Hematologic workup revealed elevated ESR, PT, INR, PTT, and CRP, mixing studies that failed to correct, and a positive Russell Viper Venom Test (RVVT), which confirmed the presence of lupus anticoagulant (LA), a subtype of antiphospholipid syndrome (APA). Pathology of ...

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

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

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