نتایج جستجو برای: central obesity

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

2013
Yanlei Ma Yongzhi Yang Feng Wang Peng Zhang Chenzhang Shi Yang Zou Huanlong Qin

BACKGROUND Mounting evidence indicates that obesity may be associated with the risk of colorectal cancer (CRC). To conduct a systematic review of prospective studies assessing the association of obesity with the risk of CRC using meta-analysis. METHODOLOGY/PRINCIPAL FINDINGS Relevant studies were identified by a search of MEDLINE and EMBASE databases before January 2012, with no restrictions....

Journal: :Demographic research 2015
Jon M Hussey Quynh C Nguyen Eric A Whitsel Liana J Richardson Carolyn Tucker Halpern Penny Gordon-Larsen Joyce W Tabor Pamela P Entzel Kathleen Mullan Harris

BACKGROUND With the emergence of obesity as a global health issue an increasing number of major demographic surveys are collecting measured anthropometric data. Yet little is known about the characteristics and reliability of these data. OBJECTIVES We evaluate the accuracy and reliability of anthropometric data collected in the home during Wave IV of the National Longitudinal Study of Adolesc...

2010
Nam-Seok Joo Duck-Joo Lee Kwang-Min Kim Bom-Taeck Kim Chan-Won Kim Kyu-Nam Kim Sang-Man Kim

Obese individuals are less able to oxidize fat than non-obese individuals. Caloric reduction or fasting can detect ketonuria. We investigated the differences of metabolic parameters in the presence of ketonuria after a minimum 8 hr fast in a cross-sectional analysis of 16,523 Koreans (6,512 women and 10,011 men). The relationship between the presence of ketonuria of all subjects and prevalence ...

Journal: :The Journal of nutrition 2008
Ahmad Esmaillzadeh Leila Azadbakht

Studying the links between dietary patterns and obesity is especially relevant for Middle-Eastern populations because of their high prevalence of a particular type of obesity, the so-called Middle-Eastern pattern, and their diets' unique characteristics. Therefore, we wondered if major dietary patterns are related to the prevalence of general obesity and central adiposity among Iranian women. I...

Journal: :iranian journal of diabetes and obesity 0
keramatollah rahmanian 1. department of social medicine, jahrom university of medical sciences, jahrom, iran mohammad shojaie 2. department of internal medicine, jahrom university of medical sciences, jahrom, iran.

objective: we determine the prevalence of the metabolic syndrome in an urban population of jahrom, a city located in the south of iran. materials and methods: randomly selected subjects ≥30 years-old were studied using stratified sampling. target study sample was 892 (405 men and 487 women). metabolic syndrome was diagnosed using modified adult treatment panel guidelines when any three of the f...

Journal: :Jurnal Ilmu Keperawatan Medikal Bedah 2022

Obesity is an abnormal condition characterized by excessive increase in body fat, generally deposited the subcutaneous tissue, around organs, and sometimes infiltrated into organs. occurs due to changes lifestyle, for example, drinking a lot, smoking habits, consuming lots of fatty foods, fast food (fast food) low physical activity. The main factors causing central obesity are increased intake ...

2013
Annalijn I Conklin Nita G Forouhi Marc Suhrcke Paul Surtees Nicholas J Wareham Pablo Monsivais

BACKGROUND Socioeconomic status is strongly associated with obesity. Current economic circumstances are also independently associated with self-reported weight status in Finnish civil servants. We aimed to examine three types of financial hardship in relation to measured general and central obesity in a general population of older adults, while considering conventional socioeconomic indicators....

Journal: :Diabetes care 2006
Hirofumi Ohnishi Shigeyuki Saitoh Satoru Takagi Nobuo Katoh Yu Chiba Hiroshi Akasaka Yosuke Nakamura Kazuaki Shimamoto

A ccording to the new International Diabetes Federation (IDF) definition of metabolic syndrome, for a person to be defined as having metabolic syndrome they must have central obesity defined by waist circumference (1). In the definition, there are some ethnic or country-specific differences in the cutoff points of waist circumference, and Japanese cutoff points have been separately established ...

Journal: :Diabetes care 2006
Hye Soon Park Sang Yeoup Lee Seon Mee Kim Jee Hye Han Dae Jung Kim

The metabolic syndrome is associated with increased cardiovascular morbidity and mortality (1,2). In 2005, the International Diabetes Federation (IDF) formulated a new, clinically accessible worldwide definition of the metabolic syndrome in a global consensus statement (3) built on earlier definitions (4,5). According to the IDF, central obesity is an essential component of the metabolic syndro...

Journal: :Asia Pacific journal of clinical nutrition 2013
Jiao Wang Rong-Ping Chen Lei Lei Qing-Qing Song Ru-Yi Zhang Yan-Bing Li Chuan Yang Shao-Da Lin Li-shu Chen Yu-Lin Wang Fan Zhao Gan-Xiong Liang Bao-Chun Hu Jian-Cai Lin De-Hong Cai

This study investigated the prevalence and determinants of hyperuricemia in Chinese type 2 diabetes mellitus (T2DM) patients with central obesity. A multicentric hospital-based cross-sectional study was carried out in Guangdong Province between August 2011 and March 2012. At each hospital, Chinese T2DM patients with central obesity who were aged over 20 years, whose serum uric acid levels were ...

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

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

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