Skip to main content
Heliyon logoLink to Heliyon
. 2024 Apr 3;10(7):e29050. doi: 10.1016/j.heliyon.2024.e29050

Comprehensive overview of the anesthesiology research landscape: A machine Learning Analysis of 737 NIH-funded anesthesiology primary Investigator's publication trends

Marc Ghanem a, Camilo Espinosa a,b,c,d, Philip Chung a, Momsen Reincke a, Natasha Harrison a,c,d, Thanaphong Phongpreecha a,d,e, Sayane Shome a,c,d, Geetha Saarunya a,c,d, Eloise Berson a,d,e, Tomin James a, Feng Xie a,c,d, Chi-Hung Shu a, Debapriya Hazra a,c,d, Samson Mataraso a,c,d, Yeasul Kim a,c,d, David Seong a,b,f,g, Dipro Chakraborty a,c,d, Manuel Studer a, Lei Xue a,c,d, Ivana Marić c, Alan L Chang a,c,d, Erico Tjoa a, Brice Gaudillière a, Vivianne L Tawfik a, Sean Mackey a, Nima Aghaeepour a,c,d,
PMCID: PMC11016610  PMID: 38623206

Abstract

Background

Anesthesiology plays a crucial role in perioperative care, critical care, and pain management, impacting patient experiences and clinical outcomes. However, our understanding of the anesthesiology research landscape is limited. Accordingly, we initiated a data-driven analysis through topic modeling to uncover research trends, enabling informed decision-making and fostering progress within the field.

Methods

The easyPubMed R package was used to collect 32,300 PubMed abstracts spanning from 2000 to 2022. These abstracts were authored by 737 Anesthesiology Principal Investigators (PIs) who were recipients of National Institute of Health (NIH) funding from 2010 to 2022. Abstracts were preprocessed, vectorized, and analyzed with the state-of-the-art BERTopic algorithm to identify pillar topics and trending subtopics within anesthesiology research. Temporal trends were assessed using the Mann-Kendall test.

Results

The publishing journals with most abstracts in this dataset were Anesthesia & Analgesia 1133, Anesthesiology 992, and Pain 671. Eight pillar topics were identified and categorized as basic or clinical sciences based on a hierarchical clustering analysis. Amongst the pillar topics, “Cells & Proteomics” had both the highest annual and total number of abstracts. Interestingly, there was an overall upward trend for all topics spanning the years 2000–2022. However, when focusing on the period from 2015 to 2022, topics “Cells & Proteomics” and “Pulmonology” exhibit a downward trajectory. Additionally, various subtopics were identified, with notable increasing trends in “Aneurysms”, “Covid 19 Pandemic”, and “Artificial intelligence & Machine Learning”.

Conclusion

Our work offers a comprehensive analysis of the anesthesiology research landscape by providing insights into pillar topics, and trending subtopics. These findings contribute to a better understanding of anesthesiology research and can guide future directions.

Keywords: Anesthesiology research trends, Topic modeling, Pillar topics, Trending subtopics, NIH-funded research, Artificial intelligence, Machine Learning

1. Introduction

Anesthesiologists are crucial to perioperative care, critical care, and pain management, significantly impacting patient experiences and clinical outcomes. Over the past few decades, the field has undergone significant advances with new technologies, techniques, and drugs being developed to improve patient outcomes and safety [1]. In the current landscape of constrained funding and mounting pressure to meet the staffing demands of operating rooms, anesthesiologists can benefit from understanding research trends to capitalize on emerging field opportunities. Thus, a comprehensive data-driven analysis examining the evolution of research in anesthesiology is critical to making informed decisions regarding future research efforts [2]. Such an approach promises to offer insights into growth areas allowing the research community to move the field forward more rapidly.

One powerful tool for extracting insights from medical text data is topic modeling, which identifies the major themes or topics in a large corpus of text [3]. Topic modeling can help researchers discover patterns in medical data that may be difficult to identify through manual examination alone [4]. In recent years, unsupervised machine learning (ML) algorithms have emerged as powerful tools for topic modeling [5]. One such algorithm is BERTopic, which uses Bidirectional Encoder Representations from Transformers (BERT), a state-of-the-art deep learning model for natural language processing (NLP), to extract topics from text data [6].

In this work, we extracted published abstracts of anesthesiology principal investigators (PIs) who secured National Institute of Health (NIH) funding during 2010–2022, as listed by the Blue Ridge Institute for Medical Research (BRIMR). We then applied topic modeling was applied and identified 8 pillar topics and 17 significantly trending subtopics as part of the evolving landscape of anesthesiology research. Our findings offer a comprehensive overview of current research to help shape future research endeavors.

2. Methods

2.1. Data retrieval & preprocessing

We obtained a list of NIH-funded anesthesiology PIs from publicly-available data published by BRIMR (Horse Shoe, NC) [7], which provides comprehensive reports on NIH funding allocated to medical schools and other health science organizations [8]. Afterwards, we used the R package easyPubMed to efficiently access articles from PubMed, an expansive biomedical literature database. The resulting abstract dataset encompasses 32,300 PubMed abstracts spanning from 2000 to 2022. These curated abstracts were authored by 737 Anesthesiology PIs who secured NIH funding between 2010 and 2022. All abstracts were then preprocessed by removing HTML, non-letter characters, and stop words. Additionally, text was converted to lowercase and underwent word stemming.

2.2. Topic modeling

Language models trained on specific domain datasets are often superior in quality to models based only on general corpora for various narrowly defined tasks. [9], We employed BERTopic, a model-based state-of-the-art transformer architecture for topic modeling in this paper [6]. BERTopic is a topic modeling algorithm that leverages clustering techniques and a class-based variation of TF-IDF (c-TF-IDF) to generate coherent topic representations. It is an unsupervised ML technique that does not require labeled data or a predefined set of topics. BERTopic uses the BERT model, an algorithm pre-trained on a large corpus of unannotated text data, specifically on the English Wikipedia and the BooksCorpus datasets. This allows BERTopic to identify highly relevant and nuanced topics that other topic-modeling approaches may miss.

BERTopic goes through a sequence of steps to generate meaningful topic representations from the abstracts (Fig. 1). Initially, the abstracts were converted into numerical representations using sentence-transformers optimized for semantic similarity. Abstract embeddings were created utilizing a pre-trained language model Bidirectional Encoder Representations from Transformers (BERT) to obtain abstract-level information. Pretrained models facilitate the analysis and interpretation of text data in NLP.

Fig. 1.

Fig. 1

Overview of the Machine Learning Topic Modeling Process. The figure illustrates the abstract collection and topic modeling strategies. The three main steps involved in constructing the topic modeling approach are depicted, (I) creating abstract embeddings using the pre-trained BERT language model to capture document-level information, (II) dimensionality reduction using UMAP and subsequent density-based clustering using HDBSCAN to identify semantically similar clusters, and (III) topic representation using a class-based version of TF-IDF with MMR to reduce redundancy and improve the relevance of retrieved documents.

Subsequently, the dimensionality of abstract embeddings was reduced using Uniform Manifold Approximation and Projection (UMAP). UMAP, a non-linear dimensionality reduction technique, preserves both local and global structure while representing high-dimensional data in a lower-dimensional space [10]. Next, Hierarchical Density-Based Spatial Clustering of Applications with Noise (HDBSCAN), a density-based clustering technique, was applied to cluster the reduced-dimensionality embeddings [11]. This technique identifies clusters with varying shapes and sizes, and is able to Identify outliers. Since topic clusters might have different sizes and shapes, a centroid-based topic representation technique can miss. Instead, all abstracts in a cluster were merged into a single document, which was used to represent that topic cluster. Frequencies of words within clusters are then calculated, yielding a bag-of-words representation. Moreover, the bag-of-words representation was L1-normalized to adjust for varying cluster sizes.

Afterwards, topic representations were created by using a modified version of the term frequency-inverse document frequency (TF-IDF) called class-based TF-IDF (c-TF-IDF). The c-TF-IDF algorithm focuses on topic clusters instead of individual abstracts [12]. TF-IDF is a way to measure the importance of a word or phrase by looking at how often it appears in a specific topic versus rare it is in the entire set of topics analyzed. TF measures how frequently a word appears in a topic, while IDF measures the rarity of a word across all topics by considering the logarithm of the total number of topics divided by the number of topics containing that word. TF-IDF vectorization involves calculating the TF-IDF score for every word across a set of topics so that a word's relative importance score within a topic is the ratio of the word's frequency in the topic normalized to its frequency across all topics [13]. This process generates importance scores of words within each topic, determining the most representative words for each topic. Topic representation and c-TF-IDF were L1-normalized to account for differences in topic sizes.

Finally, to minimize word redundancy and improve the diversity of keywords representing each topic, a Maximal Marginal Relevance (MMR) algorithm was used [14]. MMR balances the trade-off between relevance (how closely an item is related to a topic) and diversity (how dissimilar an item is from already selected items). This incorporation of MMR into the analysis resulted in a more informative and varied set of keywords better representing the identified topics.

2.3. Topic modeling result visualizations

For a more comprehensive understanding of the generated topics, bar charts showcased the most relevant words associated with each identified topic. Within these charts, c-TF-IDF scores were displayed, clearly depicting of the relative importance of words both within and across topics. This approach facilitated comparisons among the various topic representations.

Subsequently, a two-dimensional plot was generated to visually represent the topics following UMA’'s dimensionality reduction of the abstract embeddings. This visualization served as an insightful portrayal of the topics, offering a comprehensive understanding of their interrelationships.

Afterwards, the visualization of topic hierarchy enabled a deeper comprehension of the potential hierarchical structure existing among topics. The similarity amongst different topics was approximated using the topic-term matrix (c-TF-IDF matrix). The smaller the distance between two c-TF-IDF representations, the more similar they are.

After experimenting with different cutoffs, pillar topics in anesthesiology research were determined with a requirement of at least 280 abstracts per individual topic. To unveil subtopics within the field, topic modeling was repeated with a modified cutoff to 20 abstracts per topic.

2.4. Trend analysis & correlation calculations

The Mann-Kendall test, a non-parametric statistical method, was used to identify significant trends in the topic modeling results, assessing their strength, direction, and statistical significance. The trends of the large subtopics (>200 abstracts/topic), and small subtopics (<200 abstracts/topic) were examined.

A count vectorizer was used to compute the Spearman correlation between individual words and abstract publication years. The Bonferroni method was used to control for multiple hypothesis testing.

3. Results

3.1. Overview of data

The extracted dataset contained 32,300 PubMed abstracts between 2000 and 2022 covering research done by 737 anesthesiology PIs who received NIH funding between 2010 and 2022. The number of abstracts steadily increased over time, with a more pronounced surge after 2018. (Fig. 2A). Anesthesia & Analgesia accounted for the highest number of abstracts at 1133 and was followed by Anesthesiology with 992 and Pain with 671 (Fig. 2B).

Fig. 2.

Fig. 2

Temporal and Journal-Level Analysis of Anesthesiology Research Abstracts. (A) A line chart illustrating the total number of abstracts per year from 2000 to 2022, showcasing the trend in research output over time. (B) A bar chart highlighting the 10 journals with the highest number of abstracts.

3.2. Exploring the landscape of anesthesiology research: unveiling the pillar topics, primary categories, and shifting priorities using BERTopic

The BERTopic algorithm was utilized to conduct an in-depth examination of abstracts in anesthesiology research. Clusters of anesthesiology research topics, termed “pillar topics” were defined as separate entities if they consisted of 280 or more similar abstracts each. As a result, 8 pillar topics were identified and classified into 2 primary categories (Basic science & Clinical science), providing a detailed overview of the research field. Moreover, the most relevant words in each cluster were identified by TF-IDF scores, allowing for a comprehensive understanding of the pillar topics (Fig. 3A). The displayed words represent key concepts, themes, or distinguishing characteristics associated with each pillar topic.

Fig. 3.

Fig. 3

A Comprehensive Analysis of the Pillar Anesthesiology Research. (A) Bar chart depicting each topic's most relevant preprocessed words along with their c-TF-IDF scores. (CS: Clinical Science, BS: Basic Science). (B) 2D plot illustrating the relationships between similar abstracts and their corresponding topics after dimensionality reduction of abstract embeddings using UMAP; colors denote topics as shown in 3A, while light grey denotes abstracts that have not been assigned to any topic. (C) Hierarchical clustering presenting the topics divided into two major clusters; the hierarchy is generated using the topic-term matrix (c-TF-IDF matrix), where smaller distances between c-TF-IDF representations indicate higher similarity between the topics.

Hierarchical clustering analysis of anesthesiology pillar topics provided insight into the organization of subtopics within the broader themes of basic and clinical science. Specifically, the analysis revealed that basic science subtopics were closely clustered together, as were clinical subtopics. (Fig. 3B and C).

The basic science (BS) topics “Cells & Proteomics” & “Pain & Neurons” were clustered together. “Pain & Neurons” centered on pain, neurons, nerve receptors, and the spine. On the other hand, “Cells & Proteomics” was mainly focused on increased cell activity and protein expression. The identified BS topics provide a foundation for understanding underlying biological mechanisms that play a critical role in advancing the field of basic science anesthesiology research.

Within the clinical science category, four clinical subtopics were grouped together with three topics focused on organ systems and one covering patient care. Further analysis of the “Patient Care” word scores revealed its focus on care and data science, as evidenced by its keywords, such as “Study”, and “Data”. “Cardiology” was concerned with blood pressure, arteries, and cardiac surgery, while “Delirium & Cognition” focused on postoperative delirium and cognition. “Pulmonology”, on the other hand, centered on aspects related to oxygen, airways, respiration, intubation, and ventilation. The two remaining topics were “Pain & Opioids” & “Pediatrics”. Together, these topics along with their representative keywords, provide a comprehensive overview of the clinical research in anesthesiology and shed light on the most prominent topics in the field.

Fig. 4A illustrates the dynamic research focus in the field of anesthesiology across different years. Notably, the topic “Cells & Proteomics” had both the highest annual and total number of abstracts. Interestingly, there was an overall upward trend for all topics spanning the years 2000–2022. While “Cells & Proteomic” previously stood out as the most prominent topic, it has not displayed a similar upward trend in recent years. Indeed, “Cells & Proteomic” & “Pulmonology” were the only topics that have not shown an upward trend in the period from 2015 to 2022. These observations shed light on the shifts in anesthesiology research and the changing relevance of various topics over time. Fig. 4B shows the publication frequency of each pillar topic in anesthesiology research from 2000 to 2022. Notably, the topics with the highest publication frequencies include “Cells & Proteomics” (12,969 abstracts), “Pain & Opioids” (3482 abstracts), and “Pain & Neurons” (2460 abstracts). In contrast, the topic “Pediatrics” stood out as the least explored area, with a publication count of 355 abstracts.

Fig. 4.

Fig. 4

Temporal and Funding Analysis of the Pillar Anesthesiology Research Topics. (A) Line chart highlighting the alternating research focus over time by displaying the number of abstracts published on each topic from 2000 to 2022. (B) Bar chart illustrating the total number of abstracts for each topic.

3.3. Revealing anesthesiology research subtopics using BERTopic

A second iteration of BERTopic-driven topic modeling was performed to establish for a more comprehensive understanding of the subtopics within anesthesiology research. In contrast to the first iteration that sought to unveil prominent pillar topics, this iteration of BERTopic was geared to categorize any cluster of 20 or more similar abstracts as a separate subtopic. This approach revealed various distinct subtopics, allowing for an in-depth exploration of the most pivotal and noteworthy subtopics in anesthesiology research. The subtopic’' varying frequency levels and trends over time were further characterized to gain a more nuanced view of the research priorities and evolving interests in anesthesiology.

Fig. 5A illustrates the prominent subtopics (with ≥200 total abstracts/subtopic) exhibiting upward trends in recent years. These include subjects like “Chronic Pain”, “Aerobic Capacity”, “Postop Delirium & Cognition”, “Aneurysms”, “Ischemia & Reperfusion”, “Reward, Behavior, & Dopamine”, “Patient Safety”, “Maternal Delivery”, “Alcohol Consumption”, “Consciousness & Connectivity”, and “Covid-19 Pandemic”. Conversely, “Ischemia & Reperfusion” has declined in recent years. In contrast, Fig. 5B showcases smaller subtopics (<200 total abstracts/subtopic) demonstrating upward trends. These encompass areas like “Opioids”, “Palliative Care”, “Anesthesiology Training & Residency”, “Artificial Intelligence & Machine Learning”, “Kidney Injury”, and “Gut Microbiome”.

Fig. 5.

Fig. 5

Temporal Analysis of Trending Anesthesiology Subtopics. Line chart displaying: (A) Large trending subtopics count from the year 2000–2022 (>200 abstracts per topic); (B) Small trending subtopics count from the year 2000–2022 (<200 abstracts per topic). (C) 2D plot illustrating the relationships between similar abstracts and their corresponding topics after dimensionality reduction of abstract embeddings using UMAP; colors denote topics as shown in 5A-B, while light grey denotes remaining abstracts. (D-E) Charts highlighting the top 10 words most positively and negatively correlated to the year of publication, respectively.

The observed trending subtopics, as revealed by the BERTopic algorithm, align with the findings of the word-to-year correlation analysis (Fig. 5D and E). This investigation highlighted the ten words exhibiting the strongest positive and negative correlations with the publication year. Notably, certain words displayed a negative correlation with the year of publication, including terms like “Micromole” (Pearson's correlation r = −0.14), “Rat” (r = −0.16), “Concentration” (r = −0.12), and “Protein” (r = −0.11). Conversely, other words exhibited positive correlations, such as “Outcome” (r = 0.18), ‘Patient’ (r = 0.16), “Covid” (r = 0.15) “Health” (r = 0.15), and “Care” (r = 0.13). These correlations serve to establish connections between the subtopic trends and the language employed in abstracts evolving over time. Importantly, the identified negative word-to-year correlations indicate a diminishing focus on specific basic science aspects, while the positive word-to-year correlations allude to an increasing alignment between anesthesiology research and clinical science, especially in recent years.

4. Discussion

The field of anesthesiology encompasses a diverse array of research areas, leading to a continuous influx of studies. While existing bibliometric analyses have predominantly focused on top-cited studies and clinical research within anesthesia departments, as well as subspecialties within the field, there remains a gap in comprehensive bibliometric evaluations of anesthesiology literature [15]. A recent systematic review and bibliometric analysis provided valuable insights into the thematic evolution of anesthesiology research over the past 30 years, identifying seven thematic areas across different time periods. Their findings corroborate our own observations, particularly regarding the emergence of themes such as Patient Safety and Palliative Care, underscoring the evolving priorities within the field [16].We sought to investigate the continuously growing anesthesiology literature through advanced unsupervised ML techniques, particularly considering its underfunded nature. Notably, the mean 2021 NIH funding for anesthesiology PIs stands at $600,589, positioning anesthesiology within the lower quartile of medical specialties (Supplementary Figure 1). This stands in stark contrast to top-funded specialties like neurology and internal medicine, where PIs receive mean NIH budgets of $1,066,117 and $1,019,997, respectively [17]. Against this backdrop, our study aims to offer a contemporary summary of articles published by anesthesiology PIs who received NIH funding between 2010 and 2022. By doing so, our study would showcase pillar topics and key trends within the field, thereby providing insights into ongoing research endeavors and catalyzing progress within anesthesiology despite its funding challenges.

Incorporating BERTopic, an advanced topic modeling technique that considers the context of words in a sentence, provided a more precise and detailed understanding of anesthesiology research [6]. Our findings encompass both pillar topics and subtopics intrinsic to the field. We delved into categorizing pillar topics into basic science and clinical science research domains, while tracing their temporal trends. Notably, our analysis reveals the largest pillar topics: "Cells & Proteomics," "Pain & Opioids," and "Patient Care." Additionally, the 17 most notable significantly trending subtopics within the anesthesiology research domain were visualized. Through this multifaceted approach, we could focus on essential large topics and smaller trending subtopics within anesthesiology research.

4.1. Charting the course of anesthesiology research by unraveling emerging anesthesiology research trends & priorities

In an effort to clarify the content within each emerging subtopic, we carefully reviewed the main ideas presented in the abstracts. This part of the discussion aims to provide readers with a better understanding of the questions being addressed and the factors contributing to the increased attention these subtopics are receiving from NIH-funded anesthesiology researchers.

4.1.1. Neuroscience and anesthesiology

Trending topics in neuro-anesthesia include “Consciousness & Connectivity”, and “Postop Delirium & Cognition” with research spanning from cellular mechanisms of anesthetics to localizing consciousness in brain circuits. Advancements in neuroimaging techniques, such as electroencephalography (EEG) and functional magnetic resonance imaging (fMRI) have allowed for more precise investigation of brain connectivity and activity patterns. There has been a surge in research investigating emergence from anesthesia and “Postop Delirium & Cognition”. Anesthetic emergence remains a poorly understood phenomenon associated with hyperexcitability, agitation, delirium, with associated airway dangers such as laryngospasm and bronchospasm [18]. The research in anesthetic emergence hopes to understand how to better mitigate these challenges and reduce post-operative complications [19]. Given the increasing growth of ambulatory surgical care units worldwide and the aging surgical population that is at increased risk for postoperative delirium, there is increased interest in avoiding cognitive dysfunction that prolongs post-anesthesia care unit length of stay or necessitates hospital admission [20,21].

The upward trend in interest surrounding "Aneurysms" can be attributed to the considerable advancements in neurointerventional care and neurosurgery over the past two decades. These advancements span from techniques such as thrombectomy and intra-arterial thrombolysis for the management of large vessel occlusion strokes, to enhancements in surgical instrumentation and approaches for aneurysm clipping or endovascular coiling [22]. Targeted ablation of epileptic foci and stereotactic placement of deep brain stimulators have also emerged as viable options for management of refractory seizures and movement disorders, respectively [23]. Anesthesiologists make these interventions possible by manipulating hemodynamics and brain relaxation to create optimal surgical and procedural conditions and have co-authored manuscripts in many of these clinical studies.

4.1.2. Pain research and the opioid endemic

Inadequate treatment of pain represents a public health crisis in the United States. An estimated 50–100 million United States (US) adults suffer from chronic pain (CP), and 20 million with pain that significantly interferes with activities of daily living [24]. Pain comes with an astounding cost to society of over $500 billion annually, representing one of the most prevalent, costly, and disabling health conditions [25]. This personal and societal burden of pain led to an explosion of pain research over the past two decades, evidenced by the upward trend in subtopics such as “Chronic Pain” and “Opioids”.

The opioid crisis has spurred research into the long-term effects of opioids and the development of alternative therapies. This has led to significant governmental and non-profit initiatives such as the NIH Help End Addiction Long-term (HEAL) to push for the development of non-opioid analgesics and therapies, understanding the mechanisms underlying opioid addiction and dependence, and examination of the impact of changes in opioid prescribing guidelines and policies [26,27]. The development of new treatment strategies and optimization of existing ones, particularly non-opioid based, have been central to pain research. This includes developing new analgesic drugs, optimizing existing ones, and exploring alternative pain management strategies, including physical therapy, cognitive-behavioral therapy, and mindfulness [28]. Recently, researchers have attempted to tailor pain management strategies to individual patient characteristics and needs.

An in-depth analysis of the literature within the “Pain & Opioids” pillar topic reveals researchers’ focus on understanding the basic biological mechanisms underlying pain. Researchers have explored the pathways and circuits involved in pain perception, identification of molecules, genes, and ion channels involved in pain sensation, and examination of the role of inflammation in the nervous system in chronic pain [29]. Additionally, there is an increase in focus on chronic pain conditions and the phenomenon of central sensitization, where the central nervous system becomes hypersensitive.25 Research has also looked into conditions characterized by central sensitization such as fibromyalgia and chronic overlapping pain conditions.

Research has also focused on understanding pain in specific populations, such as pediatric, geriatric, populations with specific health conditions, and disparities in pain. In particular, researchers are discovering the shared and unique mechanisms of pain across the developmental spectrum from pediatric to geriatric populations [30]. Additionally, there has been increased research on underserved and marginalized populations with pain to identify and address their needs.

There has been increased recognition of the role of psychological factors in pain perception and management. In particular, researchers have explored how cognitive and behavioral factors influence pain perception and chronicity. Furthermore, they have explored the links between stress, mental health, and pain [31]. This has led to multidisciplinary approaches to pain management with an increasing number of pain clinics employing mental health professionals [32]. Additionally, researchers emphasize patient-reported outcomes and experiences in clinical trials and treatment strategies to ensure patient-centered care. These patient reported outcomes (PROs) and real-world data are an increasing focus of the Food and Drug Administration (FDA) in regulatory decision making [33]. Furthermore, PROs and real-world data are being combined with pragmatic clinical trials to better understand how treatments generalize to larger populations. This information is being combined within learning health systems to advance clinical decision support tools for clinicians.

Integrating new technologies has opened up novel avenues for pain research and treatment. Advances in neuroimaging technologies have enabled more detailed exploration of pain mechanisms in the brain, brainstem, and spinal cord. Functional, structural and chemical neuroimaging of the central nervous system has revolutionized our understanding of pain's development, magnification and persistence [34]. The development of novel neuromodulatory techniques including spinal cord, dorsal root and peripheral nerve stimulation has offered means of studying and treating pain [35]. Optogenetic approaches allow for selective monitoring and manipulation of individual neurons [36]. In addition to that major developments are seen in wearables and apps for pain management and monitoring, as well as, the use of virtual reality for pain distraction and management [37].

4.1.3. Surgical fitness, cardiovascular interventions, and advanced cardiac life support

Our analysis revealed a rise in the pillar topic “Cardiology”. Within this sphere, one trending subtopic was “Aerobic Capacity”. Prolonged life expectancy has increased in elderly and frail patients with many chronic comorbidities who undergo surgery and procedures. Perioperative medicine research has focused on risk stratifying this population by measuring a patient's surgical fitness, cardiovascular health, aerobic capacity, and physiological resilience [38]. Much research also investigates clinical screening tools, perioperative diagnostic workup algorithms, and implementation of Enhanced Recovery After Surgery protocols to reduce postoperative complications, shorten hospital stays, and promote a faster resumption of normal activities [39].

Interventional cardiology care and associated research has also been an increasing trend over the past two decades with research into new techniques and devices continuing to push the boundaries of what is possible in cardiovascular care [40]. At the same time, there have been advances in cardiac surgery and cardiac intensive care with the increasing use of ventricular assist and mechanical circulatory support devices as a destination therapy [41]. As research in interventional and cardiac life support is on the rise, we also see a decrease in the volume of research papers related to “Ischemia & Reperfusion''. While research into ischemia-reperfusion injury, ischemic preconditioning, and cardioprotective mechanisms remain important, the observed shifts in research volume reflects the relative maturity of knowledge in these research domains [42]. Our trends have also highlighted research in “Kidney Injury" as a trending area of research, which may be explained by the significant relationship between the cardiovascular and renal systems [43]. Research in this area is focused on preventing or predicting acute kidney injury and attempts to minimize the poor quality of life and comorbidities associated with renal failure.

4.1.4. Advances in maternal-fetal medicine and obstetric anesthesia

The “Maternal Delivery'' topic encompasses a broad spectrum of topics related to maternal and fetal health including pregnancy-related complications, immune system dynamics, health disparities and determinants, proteomic signatures and biomarkers, stress and lifestyle influences [44]. The rise of precision medicine and multi-omics research paired with the discovery of fetal cell-free DNA in maternal blood have enabled new ways to understand the complex immunologic and metabolic interactions shaping maternal and fetal health [45]. This has led to the research and development of noninvasive prenatal testing for genetic diseases such as down syndrome and beta thalassemia which are now widely used in clinical practice [44]. The impact of stressors, lifestyle choices, and sociodemographic factors on pregnancy complications and outcomes. Research focused on uncovering a deeper understanding of causes of maternal morbidity and mortality, maternal hypertensive disorders, pre-eclampsia, and peripartum cardiomyopathy have implications to the clinical management of obstetric patients [46].

4.1.5. Artificial intelligence, machine learning, and precision medicine

“Artificial Intelligence and Machine Learning” has been on the rise in medicine with predictive and generative models being applied in research with hopes of improvements in patient outcomes and streamlining clinical workflows. Papers within this subtopic include real-time patient deterioration monitoring and in intensive care and prediction of postoperative complications in surgical settings [47]. There has been an increase in research utilizing electronic health record data and clinical notes for robust risk assessment and clinical decision support. Furthermore, these studies delve into the ethical implications of using artificial intelligence in healthcare with fears that known biases in training datasets and predictive models may contribute to worsening health disparities. Precision medicine research has also been heavily influenced by ML and artificial intelligence advances with the goal of identifying personalized risk profiles [48]. While most precision medicine tests are currently limited to specific disease domains such as cancer and immunology, the rapid decrease in costs may enable broader applications of interest to anesthesiology practitioners such as preoperative risk prediction, surgical fitness determination, and determination of an individual's pharmacokinetics of anesthetics and analgesics [49]. Other prominent areas of investigation include immunologic research into dysregulated inflammation, as well as a growing interest in microbiome research to understand neurohormonal signaling in the brain-gut axis that influences inflammatory cytokines and mood disorders [50,51].

4.1.6. Other trending topics

Subtopic analysis shows a rising interest in “Anesthesiology Residency Education'' research publications which focus on the increasing use of interactive media, simulation-based learning, and issues of diversity, gender disparities, and leadership in medical education [52]. In addition to the growing complexities in medicine and demands upon future physicians driving new education methodologies in this arena, we also hypothesize the increase in literature volume in this domain is partly driven by a growing differentiation between clinician-educator and clinician-researcher academic career tracks.

Within the “Patient Care'' pillar topic there is a rising focus area in “Patient Safety” research, which includes literature on systems engineering approaches and building a culture of safety, especially in complex team environments such as the operating room or intensive care unit [53]. Additionally the literature has focused on specific topics such as pressure ulcers and studying the influence of clinical warning systems and artificial intelligence upon nursing staff [54]. Increasingly, methodologies utilizing telemedicine and technological innovations in the electronic health record are being investigated for benefits in clinical workflow and patient safety.

The “COVID-19 Pandemic” prompted a surge in research to better understand its consequences on patients, physicians, and staff. These studies can be categorized into themes such as the epidemiology and clinical outcomes of COVID-19 patients, including neurological complications and long-term effects. Additionally, the research delves into strategies for treatment, patient care through telemedicine approaches, and perioperative risk stratification of infected patients [55].

“Palliative Care” is also a growing subtopic focused on improving patients' quality of life with serious illnesses through comprehensive and compassionate care, addressing their physical and emotional needs. Researchers investigate the role of palliative care consultations, the impact of default options in advance directives, and the association between hospital-based palliative care and patient outcomes [56]. Studies also aim to address disparities in access to palliative care based on factors like race and mental health conditions. There is also a rising focus on utilizing mobile health apps to enhance patients’ quality of life, as well as literature that addresses the needs of caregivers. Altogether, these papers contribute to the understanding of innovative interventions, care models, and strategies to enhance patient well-being and the quality of care for individuals and families facing critical medical situations.

4.2. A word-to-year correlation analysis

Alongside the conducted trend analysis, word-to-year correlations also clarified the shifts in abstract topics over time. “Alpha,” “Beta,” “Micromole,” “Microgram,” “Rat,” “Concentration,” and “Protein” exhibited negative correlations. This could be attributed to recent shifts toward clinical science over basic science research. Moreover, the move from specific drug dosages to broader treatment protocols may account for the negative correlations of “Micromole,” “Microgram,” and "Concentration." Conversely, positive correlations for “Outcome,” “Patient,” “Health,” and “Care,” may be due to increased clinical research focus on patient outcomes and quality healthcare. Additionally, the positive correlation of “Risk” and “Confidence Interval” potentially stems from informatics and big data utilization. In recent years, the digitalization of patient data and the availability of massive EHRs have empowered healthcare professionals to identify patterns and train predictive models, leading to improved healthcare delivery and better patient outcomes [57]. Hence, this analysis highlights the importance of identifying emerging topics and priorities in anesthesiology research for researchers to stay up-to-date with shifting trends and to innovate in the field.

4.3. Limitations

While our study provides insights into anesthesiology's research activity and funding landscape, there are some limitations to consider. For instance, our study was limited to PIs listed in the BlueRidge system, which could have excluded PIs and topics funded from other sources. As such, future studies could benefit from incorporating a more comprehensive range of funding sources and researchers to understand the research landscape in anesthesiology better. Additionally, it is crucial to consider the heterogeneity within the group of anesthesiology PIs. PIs in the anesthesia department can specialize in various areas such as the operating room, critical care, and pain medicine, or pursue unrelated or research-only roles. This variability in specialization could act as a confounding variable, influencing the study outcomes. Finally, it is important to recognize that specific domains within anesthesiology research may inherently be more data-driven, rendering them more receptive to data science and ML modalities. As a result, this intrinsic diversity may influence the trends identified in our study.

4.4. Future work

Future work should focus on maintaining an up-to-date topic modeling server, which could accelerate research progress [58]. Such a server could facilitate the exploration of active research areas by providing real-time information regarding authorship, institutional affiliations, and funding sources. Additionally, researchers could find and collaborate with PIs and laboratories that conduct similar work. Finally, such a model also enables PIs to generate new ideas and research questions.

5. Conclusion

Our study sheds light on the research landscape of anesthesiology by analyzing pillar topics and trending research subtopics in the field. We have demonstrated the potential of using unsupervised ML to identify significant trends and themes in large datasets. Our findings provide valuable insights for researchers and clinicians in anesthesiology, and we hope they will inspire further exploration and analysis of this rich and evolving literature. Overall, our work offers a comprehensive overview of anesthesiology research and can guide future research directions.

Summary statement

Uncovering Anesthesiology Research Trends: Data-driven analysis reveals key topics and trends in the anesthesiology field, guiding future research and decision-making for practitioners and policymakers.

Funding

This study was supported by the NIH (R35GM138353), the Bill and Melinda Gates Foundation (INV-037517), Burroughs Wellcome Fund (1019816), the March of Dimes, the Robertson Foundation, and the Alfred E. Mann Foundation.

Data availability statement

The data and code supporting the findings of this study are accessible upon reasonable request from the corresponding author, [NA].

Ethics declarations

Ethical considerations such as review and/or approval by an ethics committee, animal experiments, and informed consent were not applicable to this study as it relied solely on machine learning analysis of publicly available data from NIH-funded publications. Therefore, the study adheres to ethical standards by ensuring the integrity and transparency of the research process.

CRediT authorship contribution statement

Marc Ghanem: Writing – review & editing, Writing – original draft, Visualization, Methodology, Investigation, Formal analysis, Data curation, Conceptualization. Camilo Espinosa: Writing – review & editing, Supervision, Methodology, Conceptualization. Philip Chung: Writing – original draft, Supervision, Conceptualization. Momsen Reincke: Writing – original draft, Formal analysis. Natasha Harrison: Writing – review & editing, Visualization. Thanaphong Phongpreecha: Investigation, Conceptualization. Sayane Shome: Investigation, Formal analysis. Geetha Saarunya: Investigation, Formal analysis. Eloise Berson: Methodology, Investigation, Conceptualization. Tomin James: Methodology, Investigation, Conceptualization. Feng Xie: Writing – review & editing, Methodology. Chi-Hung Shu: Writing – review & editing, Methodology. Debapriya Hazra: Writing – review & editing, Visualization, Investigation. Samson Mataraso: Methodology, Investigation, Conceptualization. Yeasul Kim: Investigation, Writing – review & editing. David Seong: Writing – review & editing. Dipro Chakraborty: Writing – review & editing, Investigation. Manuel Studer: Visualization, Writing – review & editing. Lei Xue: Visualization, Writing – review & editing. Ivana Marić: Writing – review & editing. Alan L. Chang: Writing – review & editing. Erico Tjoa: Writing – review & editing. Brice Gaudillière: Writing – review & editing, Supervision. Vivianne L. Tawfik: Writing – original draft, Supervision. Sean Mackey: Writing – original draft, Supervision. Nima Aghaeepour: Supervision, Project administration, Investigation, Conceptualization, Formal analysis.

Declaration of competing interest

The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper.

Footnotes

Appendix A

Supplementary data to this article can be found online at https://doi.org/10.1016/j.heliyon.2024.e29050.

Contributor Information

Marc Ghanem, Email: marcgh@stanford.edu.

Camilo Espinosa, Email: camiloe@stanford.edu.

Philip Chung, Email: chungp@stanford.edu.

Momsen Reincke, Email: mreincke@stanford.edu.

Natasha Harrison, Email: natasha9@stanford.edu.

Thanaphong Phongpreecha, Email: tpjoe@stanford.edu.

Sayane Shome, Email: sshome@stanford.edu.

Geetha Saarunya, Email: sclarke5@stanford.edu.

Eloise Berson, Email: eloiseb@stanford.edu.

Tomin James, Email: tomin@stanford.edu.

Feng Xie, Email: fengxie@stanford.edu.

Chi-Hung Shu, Email: chshu@stanford.edu.

Debapriya Hazra, Email: dhazra@stanford.edu.

Samson Mataraso, Email: samsonm@stanford.edu.

Yeasul Kim, Email: ykim824@stanford.edu.

David Seong, Email: dhs37929@stanford.edu.

Dipro Chakraborty, Email: diproc@stanford.edu.

Manuel Studer, Email: manuel.studer@inf.ethz.ch.

Lei Xue, Email: leixue@stanford.edu.

Ivana Marić, Email: ivanam@stanford.edu.

Alan L. Chang, Email: alanleec@stanford.edu.

Erico Tjoa, Email: ericotjo@stanford.edu.

Brice Gaudillière, Email: gbrice@stanford.edu.

Vivianne L. Tawfik, Email: vivianne@stanford.edu.

Sean Mackey, Email: smackey@stanford.edu.

Nima Aghaeepour, Email: naghaeep@stanford.edu.

Appendix A. Supplementary data

The following is the Supplementary data to this article.

Supplementary Fig. 1

The Total and Mean NIH Funding Across Different Medical Specialties Reported by BRIMR in 2021. (A) Line chart highlighting the mean NIH PI funding across different medical specialties (M, $ Million). (B) Bar chart illustrating the total NIH funding for each of the different medical specialties (B, $ Billion).

mmc1.pdf (113.9KB, pdf)

References

  • 1.Chandrakantan A., Adler A.C., Stayer S., Roth S. National Institutes of health–funded anesthesiology research and anesthesiology Physician-Scientists. Anesth. Analg. 2019;129:1761–1766. doi: 10.1213/ane.0000000000004341. [DOI] [PubMed] [Google Scholar]
  • 2.Rusanov A., Miotto R., Weng C. Trends in anesthesiology research: a machine learning approach to theme discovery and summarization. JAMIA Open. 2018;1:283–293. doi: 10.1093/jamiaopen/ooy009. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 3.X. Song, Topic Modeling for Natural Language Understanding, (n.d.). 10.17918/etd-7143.. [DOI]
  • 4.Boyd-Graber J., Hu Y., Mimno D. Now Publishers; 2017. Applications of Topic Models. [Google Scholar]
  • 5.Chander B., Gopalakrishnan K. Data clustering using unsupervised machine learning. Statistical Modeling in Machine Learning. 2023:179–204. doi: 10.1016/b978-0-323-91776-6.00015-4. [DOI] [Google Scholar]
  • 6.Grootendorst M. BERTopic: Neural topic modeling with a class-based TF-IDF procedure. arXiv [cs.CL] 2022 http://arxiv.org/abs/2203.05794 [Google Scholar]
  • 7.Website, (n.d.). Blue Ridge Inistitute for Medical Research. Available at: http://www.brimr.org. Accessed December 6, 2021..
  • 8.Blue Ridge Institute Juvenile Court Judges. Journal. 2009;9:3–4. doi: 10.1111/j.1755-6988.1958.tb00239.x. [DOI] [Google Scholar]
  • 9.Glazkova A., Glazkov M., Trifonov T. g2tmn at Constraint@AAAI2021: Exploiting CT-BERT and Ensembling Learning for COVID-19 Fake News Detection, Combating Online Hostile Posts in Regional Languages during Emergency Situation. 2021:116–127. doi: 10.1007/978-3-030-73696-5_12. [DOI] [Google Scholar]
  • 10.McInnes L., Healy J., Saul N., Großberger L. UMAP: Uniform Manifold approximation and Projection. J. Open Source Softw. 2018;3:861. [Google Scholar]
  • 11.McInnes L., Healy J., Astels S. hdbscan: hierarchical density based clustering. J. Open Source Softw. 2017;2:205. [Google Scholar]
  • 12.Jalilifard A., Caridá V.F., Mansano A.F., Cristo R.S., da Fonseca F.P.C. Lecture Notes in Electrical Engineering. Springer Singapore; Singapore: 2021. Semantic sensitive TF-IDF to determine word relevance in documents; pp. 327–337. [Google Scholar]
  • 13.Xu D.D., Wu S.B. An improved TFIDF algorithm in text Classification. Appl. Mech. Mater. 2014;651–653:2258–2261. doi: 10.4028/www.scientific.net/amm.651-653.2258. [DOI] [Google Scholar]
  • 14.Carbonell J., Goldstein J. Proceedings of the 21st Annual International ACM SIGIR Conference on Research and Development in Information Retrieval. ACM; New York, NY, USA: 1998. The use of MMR, diversity-based reranking for reordering documents and producing summaries. [DOI] [Google Scholar]
  • 15.A bibliometric analysis of the field of anesthesia during 2009–2018 Brazilian Journal of Anesthesiology (English Edition) 2020;70:140–152. doi: 10.1016/j.bjane.2020.04.013. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 16.Tümer M., Öztürk T., İzgi M., Yalçın H. Thirty years in anesthesiology: a bibliometric analysis. Acta Medica Cordoba. 2023;54:304–317. [Google Scholar]
  • 17.Schlafly A., Sebro R. Does NIH funding differ between medical specialties? A longitudinal analysis of NIH grant data by specialty and type of grant, 2011-2020. BMJ Open. 2022;12 doi: 10.1136/bmjopen-2021-058191. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 18.Yang Y., Feng L., Ji C., Lu K., Chen Y., Chen B. Inhalational versus Propofol-based Intravenous Maintenance of anesthesia for emergence delirium in adults: a Meta-analysis and trial Sequential analysis. J. Neurosurg. Anesthesiol. 2023;35:177–186. doi: 10.1097/ANA.0000000000000830. [DOI] [PubMed] [Google Scholar]
  • 19.Huang L., Chen X., Liu W., Shih P.-C., Bao J. Automatic surgery and anesthesia emergence Duration prediction using artificial neural Networks. J. Healthc. Eng. 2022;2022 doi: 10.1155/2022/2921775. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 20.Munnich E.L., Richards M.R. Long-run growth of ambulatory surgery centers 1990-2015 and Medicare payment policy, Health Serv. Res. 2022;57:66–71. doi: 10.1111/1475-6773.13707. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 21.Weiss Y., Zac L., Refaeli E., Ben-Yishai S., Zegerman A., Cohen B., Matot I. Preoperative cognitive Impairment and postoperative delirium in elderly surgical patients: a Retrospective large Cohort study (the CIPOD study) Ann. Surg. 2023;278:59–64. doi: 10.1097/SLA.0000000000005657. [DOI] [PubMed] [Google Scholar]
  • 22.Gravino G. The pioneering past and cutting-edge future of interventional neuroradiology. Intervent Neuroradiol. 2022 doi: 10.1177/15910199221130234. [DOI] [PubMed] [Google Scholar]
  • 23.Paulo D.L., Ball T.J., Englot D.J. Emerging technologies for Epilepsy surgery. Neurol. Clin. 2022;40:849–867. doi: 10.1016/j.ncl.2022.03.012. [DOI] [PubMed] [Google Scholar]
  • 24.Dahlhamer J., Lucas J., Zelaya C., Nahin R., Mackey S., DeBar L., Kerns R., Von Korff M., Porter L., Helmick C. Prevalence of chronic pain and high-impact chronic pain among adults - United States, 2016. MMWR Morb. Mortal. Wkly. Rep. 2018;67:1001–1006. doi: 10.15585/mmwr.mm6736a2. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 25.Von Korff M., Scher A.I., Helmick C., Carter-Pokras O., Dodick D.W., Goulet J., Hamill-Ruth R., LeResche L., Porter L., Tait R., Terman G., Veasley C., Mackey S. United States National pain Strategy for population research: concepts, definitions, and Pilot data. J. Pain. 2016;17:1068–1080. doi: 10.1016/j.jpain.2016.06.009. [DOI] [PubMed] [Google Scholar]
  • 26.A public health guide to ending the opioid epidemic. 2019. [DOI]
  • 27.Collins F.S., Koroshetz W.J., Volkow N.D. Helping to End addiction over the long-term: the research plan for the NIH HEAL initiative. JAMA. 2018;320:129–130. doi: 10.1001/jama.2018.8826. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 28.Chen R., Coppes O.J.M., Urman R.D. Receptor and molecular Targets for the development of novel opioid and non-opioid analgesic therapies. Pain Physician. 2021;24:153–163. [PubMed] [Google Scholar]
  • 29.Kuner R., Kuner T. Cellular circuits in the brain and their Modulation in acute and chronic pain. Physiol. Rev. 2021;101:213–258. doi: 10.1152/physrev.00040.2019. [DOI] [PubMed] [Google Scholar]
  • 30.Benzing A.C., Bell C., Derazin M., Mack R., MacIntosh T. Disparities in opioid pain management for long Bone Fractures. J Racial Ethn Health Disparities. 2020;7:740–745. doi: 10.1007/s40615-020-00701-1. [DOI] [PubMed] [Google Scholar]
  • 31.Gatchel R.J. Comorbidity of chronic pain and mental health disorders: the biopsychosocial perspective. Am. Psychol. 2004;59:795–805. doi: 10.1037/0003-066X.59.8.795. [DOI] [PubMed] [Google Scholar]
  • 32.Lamé I.E., Peters M.L., Vlaeyen J.W.S., Kleef M.V., Patijn J. Quality of life in chronic pain is more associated with beliefs about pain, than with pain intensity. Eur. J. Pain. 2005;9:15–24. doi: 10.1016/j.ejpain.2004.02.006. [DOI] [PubMed] [Google Scholar]
  • 33.Rivera S.C., Kyte D.G., Aiyegbusi O.L., Slade A.L., McMullan C., Calvert M.J. The impact of patient-reported outcome (PRO) data from clinical trials: a systematic review and critical analysis. Health Qual. Life Outcome. 2019;17:156. doi: 10.1186/s12955-019-1220-z. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 34.Mackey S., Greely H.T., Martucci K.T. Neuroimaging-based pain biomarkers: definitions, clinical and research applications, and evaluation frameworks to achieve personalized pain medicine. Pain Rep. 2019;4:e762. doi: 10.1097/PR9.0000000000000762. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 35.Sun L., Peng C., Joosten E., Cheung C.W., Tan F., Jiang W., Shen X. Spinal cord stimulation and treatment of peripheral or central Neuropathic pain: mechanisms and clinical application. Neural Plast. 2021;2021 doi: 10.1155/2021/5607898. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 36.Packer A.M., Roska B., Häusser M. Targeting neurons and photons for optogenetics. Nat. Neurosci. 2013;16:805–815. doi: 10.1038/nn.3427. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 37.Logan D.E., Simons L.E., Caruso T.J., Gold J.I., Greenleaf W., Griffin A., King C.D., Menendez M., Olbrecht V.A., Rodriguez S., Silvia M., Stinson J.N., Wang E., Williams S.E., Wilson L. Leveraging virtual reality and Augmented reality to Combat chronic pain in Youth: Position paper from the Interdisciplinary Network on virtual and Augmented technologies for pain management. J. Med. Internet Res. 2021;23 doi: 10.2196/25916. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 38.Schonborn J A.H. Perioperative medicine: a changing model of care. BJA Education. 2019;19:27–33. doi: 10.1016/j.bjae.2018.09.007. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 39.Ljungqvist O., Scott M., Fearon K.C. Enhanced Recovery after surgery: a review. JAMA Surg. 2017;152:292–298. doi: 10.1001/jamasurg.2016.4952. [DOI] [PubMed] [Google Scholar]
  • 40.Stevenson A., Kirresh A., Ahmad M., Candilio L. Robotic-assisted PCI: the future of Coronary intervention? Cardiovasc. Revascularization Med. 2022;35:161–168. doi: 10.1016/j.carrev.2021.03.025. [DOI] [PubMed] [Google Scholar]
  • 41.Daubenspeck D.K. Mechanical circulatory support devices: historical overview and modern approach. Int. Anesthesiol. Clin. 2022;60:1–7. doi: 10.1097/AIA.0000000000000376. [DOI] [PubMed] [Google Scholar]
  • 42.Tappia P.S., Shah A.K., Ramjiawan B., Dhalla N.S. Modification of ischemia/reperfusion-Induced Alterations in Subcellular Organelles by ischemic preconditioning. Int. J. Mol. Sci. 2022;23 doi: 10.3390/ijms23073425. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 43.Alizadeh R., Fard Z.A. Renal effects of general anesthesia from old to recent studies. J. Cell. Physiol. 2019;234:16944–16952. doi: 10.1002/jcp.28407. [DOI] [PubMed] [Google Scholar]
  • 44.Gaiser R.R., Onuoha O. Elsevier; 2017. Obstetric Anesthesia, an Issue of Anesthesiology Clinics. [Google Scholar]
  • 45.Pammi M., Aghaeepour N., Neu J. Multiomics, artificial intelligence, and precision medicine in perinatology. Pediatr. Res. 2023;93:308–315. doi: 10.1038/s41390-022-02181-x. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 46.Varagic J., Desvigne-Nickens P., Gamble-George J., Hollier L., Maric-Bilkan C., Mitchell M., Pemberton V.L., Redmond N. Maternal morbidity and mortality: are We Getting to the “Heart” of the Matter? J. Womens. Health. 2021;30:178–186. doi: 10.1089/jwh.2020.8852. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 47.Mathis M.R., Engoren M.C., Williams A.M., Biesterveld B.E., Croteau A.J., Cai L., Kim R.B., Liu G., Ward K.R., Najarian K., Gryak J. Prediction of postoperative deterioration in cardiac surgery patients using electronic health record and physiologic Waveform data. Anesthesiology. 2022;137:586–601. doi: 10.1097/ALN.0000000000004345. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 48.Fallahzadeh R., Verdonk F., Ganio E., Culos A., Stanley N., Maric I., Chang A.L., Becker M., Phongpreecha T., Xenochristou M., De Francesco D., Espinosa C., Gao X., Tsai A., Sultan P., Tingle M., Amanatullah D.F., Huddleston J.I., Goodman S.B., Gaudilliere B., Angst M.S., Aghaeepour N. Objective activity Parameters track patient-specific physical Recovery Trajectories after surgery and link with individual preoperative immune states. Ann. Surg. 2023;277:e503–e512. doi: 10.1097/SLA.0000000000005250. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 49.Shima J., Rahili S., Torbaghan S.S., Yazdani M., Hashemi N., Aghaeepour N. vol. 20220093234. 2022. p. A1.https://patentimages.storage.googleapis.com/76/24/40/2b5a6f08b86580/US20220093234A1.pdf (Systems, Methods and Devices for Monitoring, Evaluating and Presenting Health Related Information, Including Recommendations). [Google Scholar]
  • 50.Dabrowski W., Siwicka-Gieroba D., Kotfis K., Zaid S., Terpilowska S., Robba C., Siwicki A.K. The Brain-gut Axis-where are we now and how can we Modulate these Connections? Curr. Neuropharmacol. 2021;19:1164–1177. doi: 10.2174/1570159X18666201119155535. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 51.Haight E.S., Forman T.E., Cordonnier S.A., James M.L., Tawfik V.L. Microglial Modulation as a Target for chronic pain: from the Bench to the Bedside and Back. Anesth. Analg. 2019;128:737–746. doi: 10.1213/ANE.0000000000004033. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 52.Hoyler M.M., Pryor K.O., Gotian R., Brumberger E.D., Chan J.M. Resident physicians as clinical educators in anesthesiology: a narrative review. Anesth. Analg. 2023;136:270. doi: 10.1213/ANE.0000000000006243. [DOI] [PubMed] [Google Scholar]
  • 53.Verret M., Fergusson D.A., Nicholls S.G., Graham M., Zivkovic F., Lê M., Geist A., Lam N.H., Graham I.D., Turgeon A.F., McIsaac D.I., Lalu M.M. Engaging patients in anesthesiology research: a rewarding frontier. Canadian Journal of Anesthesia/Journal Canadien D’anesthésie. 2023;70:817–823. doi: 10.1007/s12630-023-02432-3. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 54.Vanhonacker D., Verdonck M., Nogueira Carvalho H. Impact of closed-loop technology, machine learning, and artificial intelligence on patient safety and the future of anesthesia. Curr. Anesthesiol. Rep. 2022;12:451–460. [Google Scholar]
  • 55.Wen X., Li Y. Anesthesia procedure of emergency operation for patients with Suspected or Confirmed COVID-19. Surg. Infect. 2020;21:299. doi: 10.1089/sur.2020.040. [DOI] [PubMed] [Google Scholar]
  • 56.Catalisano G., Ippolito M., Marino C., Giarratano A., Cortegiani A. Palliative care Principles and anesthesiology clinical practice: current Perspectives. J. Multidiscip. Healthc. 2021;14:2719–2730. doi: 10.2147/jmdh.s240563. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 57.Bellini V., Rafano Carnà E., Russo M., Di Vincenzo F., Berghenti M., Baciarello M., Bignami E. Artificial intelligence and anesthesia: a narrative review. Ann. Transl. Med. 2022;10:528. doi: 10.21037/atm-21-7031. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 58.Chaney A., Blei D. Visualizing topic models. Proceedings of the International AAAI Conference on Web and Social Media. 2021;6:419–422. doi: 10.1609/icwsm.v6i1.14321. [DOI] [Google Scholar]

Associated Data

This section collects any data citations, data availability statements, or supplementary materials included in this article.

Supplementary Materials

Supplementary Fig. 1

The Total and Mean NIH Funding Across Different Medical Specialties Reported by BRIMR in 2021. (A) Line chart highlighting the mean NIH PI funding across different medical specialties (M, $ Million). (B) Bar chart illustrating the total NIH funding for each of the different medical specialties (B, $ Billion).

mmc1.pdf (113.9KB, pdf)

Data Availability Statement

The data and code supporting the findings of this study are accessible upon reasonable request from the corresponding author, [NA].

Ethics declarations

Ethical considerations such as review and/or approval by an ethics committee, animal experiments, and informed consent were not applicable to this study as it relied solely on machine learning analysis of publicly available data from NIH-funded publications. Therefore, the study adheres to ethical standards by ensuring the integrity and transparency of the research process.


Articles from Heliyon are provided here courtesy of Elsevier

RESOURCES