Next Article in Journal
Prolonged Screen Viewing Times and Sociodemographic Factors among Pregnant Women: A Cross-Sectional Survey in China
Previous Article in Journal
Exploring Heat Stress Relief Measures among the Australian Labour Force
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

A Text Structuring Method for Chinese Medical Text Based on Temporal Information

Department of Information Management, Beijing Jiaotong University, Beijing 100044, China
*
Author to whom correspondence should be addressed.
Int. J. Environ. Res. Public Health 2018, 15(3), 402; https://doi.org/10.3390/ijerph15030402
Submission received: 30 December 2017 / Revised: 10 February 2018 / Accepted: 23 February 2018 / Published: 27 February 2018
(This article belongs to the Section Health Behavior, Chronic Disease and Health Promotion)

Abstract

:
Chinese Electronic Medical Records (EMRs) contains a large number of complex medical free text which includes a variety of information, such as temporal information, patients’ symptoms and laboratory data. However, as an important knowledge base, these unstructured text data in EMR are hard to process directly by computer to support further medical research. This paper proposes a novel text structuring method to extract knowledge from EMR texts and reorganize them in chronological order according to the temporal information in the text. By implementing some entropy-based algorithms as contrast, experiments evaluate the performance of the proposed method, which indicates the new method can significantly reduce the complexity of EMR text. This work is significant in structuring the EMR free text into temporal-structured data for further medical analysis.

1. Introduction

An Electronic Medical Record (EMR) is a professional document that contains all data generated during the treatment process. The EMR can include data of various formats, such as numerical data, text, and images. In China, quick development of hospital information technologies has brought a rapid accumulation of medical data, and a huge amount of these data are in the form of unstructured text, leading to difficulties in medical information management in the era of big data [1]. The standardization of Chinese EMRs has been implemented successfully in many hospitals, and it helps enable the management and analysis of medical records in different ways. However, many medical researchers are submerged in huge amounts of clinical data in their studies, because it is hard for them to discover the hidden knowledge laying in the massive amount of medical text, which is a great challenge to efficiently use the text in EMRs in the medical field [2]. The temporal information, recorded in natural language, is an important clue in EMR text related with the chief complaint, history of present illness, past history of illness and so on. In this study, based on the temporal information from the EMR text, we propose a Medical Text Reconstruction method based on Temporal Information (MTRTI) to establish the mapping relationship between medical concepts and clinical facts, which is temporal-structured. It helps medical researchers utilize the EMR text in an easier way to investigate the clinical knowledge that lies in the text. Besides, the processed text data can be further used easily by computer-aid analysis according to the specific needs [3].
The remainder of the paper is organized as follows: Section 2 reviews related work. Section 3 describes the framework of MTRTI and the modules in it. Section 4 evaluates the performance of MTRTI based on information entropy theory. Then, conclusions are given in the last section.

2. Related Work

Mining the knowledge in medical texts, such as EMR text, has been attracting more and more attention, as people have noticed that the text data is as important as other structured data which contains a lot of information and knowledge. However, it is difficult to directly analyze the medical data by traditional computer algorithms without pre-processing [4]. As one of the characteristics of medical text, all EMR texts contain temporal information, which describes the disease progression and clinical process. Although mining the knowledge lies in the EMR text is a challenging work [5,6,7,8,9], extracting the temporal information of medical events is the basis for further clinical analysis. Reeves et al. [10] divided the temporal information into four aspects that are namely date, time, duration of time and fixed time by recognizing and analyzing time reference expressions. In order to extract the time relationships effectively, Norén et al. [11] proposed a time measure approach for time management, including the observation/expectation rate after a two-year control period. Based on the pattern discovery methods of the two million patient data samples in the United Kingdom, this was proved practical. Towards the studies of the relationship between temporal information, considering additional information will help explain more medical facts. Hanauer et al. [12] proposed an approach to extract timestamp-based ICD-9 coding from 16 million patients’ data. In order to study the classification of temporal expressions from medical free texts, Zhou et al. [13] established a time-constrained model to achieve reasoning ability based on temporal information, which successfully extracted all kinds of temporal information from the abstracts of hospital discharges.
Temporal information in EMR is essential in mining the medical pattern and normal in clinical research, Zhang et al. [14] used the health information systems at a mental hospital to investigate drug reactions and identify the adverse events which were later associated to the specified medicine and dose. Aiming at irregular and multi-dimension data, Singh et al. [15] proposed three kinds of methods to establish prediction models using temporal health data, which has a good prediction ability in studies of renal function loss. Xu et al. [16] put forward a framework based on patient information to translate Chinese medical text into a triple “time, event, descriptions” structure, the output of which could be the explanation or the consequence of medical events. For the studies of time changing trends of personal healthcare archives, building the relationship between medical events and temporal information helps in depth study of the use of temporal information from EMR texts [17].
These above works indicate that an effective structuring method to analyze medical free text is important in mining the latent medical knowledge. Some of them introduce SNOMED CT and ICD-10 into the structuring process, which improves the standardization of the data. However, these researches are done with the idea of extracting information from medical texts, rather than reconstructing them into a structured data format. Extracting data from text is an important way to structure the text data. However, some information from data may be missed during the extraction process. In order to process the Chinese EMR text into template-structured data, reduce the semantic uncertainty caused by unstructured medical text, and avoid missing data when extracting data from text, this paper proposes a new method called MTRTI to reconstruct the EMR text into a computer friendly data format. Text data reconstruction, which is able to keep all of the information in the original text, is different from the idea of extracting data from text. The details of the new method are described in the following sections.

3. Framework and Details of MTRTI

3.1. The Framework of MTRTI

MTRTI includes several modules, and Figure 1 describes its framework. Generally, these modules are Text Correction module (TC), Text Structuring module (TS), Medical Facts and Events Extraction module (MFEE), and Temporal Information Extraction module (TIE). Each module needs the support of a corresponding rule base or database. The TC corrects the spelling mistakes based on correction policies. The TS splits the texts according to grammatical rules. Based on the medical domain knowledge bases and tagged corpus, the KV model and TED model work to describe the medical facts and events in the MFEE. The TIE processes the temporal expressions and establishes the Temporal Development Model in Patient Condition (TDM-PC) model for the text.

3.2. Text Correction Module

In this framework, the functions of some basic modules can be implemented by existing technology and tools respectively. TC module is the basic text pre-processing stage that enables the input of the text data be well formatted, and correct some typos exist in the text. Correction rules are the core of TC as given in Algorithm 1.
Algorithm 1. Text correction algorithm.
INPUT: medical_text, map_path
OUTPUT: standardized_medical_text
VARIABLES
(
DEF medical_text: a part of medical texts from electronic medical records
DEF map_path: the path of a mapping database for text correction rules
DEF standardized_medical_text: the standardized text returned to the platform
DEF map: the mapping list read from map_path
)
map = READ_DB(map_path)
medical_text = REMOVE(medical_text, EMPTY_STR)
medical_text = REMOVE(medical_text, LINE_WRAP_STR)
FOR i = 0 TO LENGTH(map)
  medical_text = medical_text.REPLACE(map[i].original, map[i].replacement)
END FOR
standardized_medical_text = medical_text
RETURN standardized_medical_text
The above algorithm is focused on removing misused characters and correcting explicit grammar errors in the raw text. Text correction policies can be defined in a database which stores the mapping rules between error string and correct string. Removing the non-standardized characters in raw medial text helps simplify the analysis process of complicated Chinese medical texts in EMR.

3.3. Text Structuring Module

TS is one of the most important modules in the framework, for it concerns the precision of the result. The EMR text contains the description of the patient’s illness, health history, as well as laboratory data, and so on. These texts are recorded by physicians using medical terms, which differ in style from our daily language, being less subjective and much shorter in length.
For example, the sentence from a clinical note “否认肝炎、结核、疟疾病史,高血压史、冠心病史20年,糖尿病史20年 (Denial of Hepatitis, Tuberculosis and Malaria; 20-year history of Hypertension and Coronary Heart Disease)” is composed by words and short sentences, without prepositions and auxiliary words, and hence very simple. We are able to acquire information from the above texts if we can split the sentence into phrases with correct semantics, such as 否认 (Denial)|肝炎 (Hepatitis)|结核 (Tuberculosis)|疟疾病 (Malaria)|高血压 (Hypertension)|冠心病 (Coronary Heart Disease)|20年 (20 years). Algorithm 2 describes the specific rules of TS.
Algorithm 2. Text structuring algorithm.
INPUT: data
OUTPUT: mt
VARIABLES
(
DEF data: raw string
DEF xmldata: xml-formatted string
DEF mt: Medical Text Object
)
xmldata = “<MedicalText>”
string[] sentences = data.Split(‘.’)
FOR i = 0 TO sentences.Length
  xmldata += “<Sentence>”
  string[] segments = sentences[i].Split(‘,’)
  Sentence sentence = new Sentence()
  FOR i1 = 0 TO segments.Length
    IF string.IsNullOrEmpty(segments[i1].Trim())
      Continue
    END IF
    xmldata += “<Segment>”
    xmldata += segments[i1]
    Segment segment = new Segment()
    segment.Text = segments[i1]
    sentence.Segment=ArrayUtils.AddArrayItem<Segment>(sentence.Segment, segment)
   END FOR
   FOR j = 0 TO times.Length
    xmldata += “</Segment>”
   END FOR
   mt.Sentence = ArrayUtils.AddArrayItem<Sentence>(mt.Sentence, sentence)
   xmldata += “</Sentence>”
   END FOR
END FOR
xmldata += “</MedicalText>”
RETURN XmlToObject(xmldata)
Note that, the use of grammar rules in Algorithm 2 also depends on actual application scenes in specific language. In Chinese, the analysis algorithm can split the raw text into paragraphs, sentences and segments based on basic Chinese grammatical knowledge.
When trying to analyze the patient condition, TS module makes it possible to extract the useful medical terms and their semantic relationships from those narrative texts. Only when we consider those medical texts by means of semantic approaches can we acquire more hidden knowledge for better analysis.

3.4. Medical Facts and Events Extraction Module

The style of medical text is different from the text used in our daily life. Therefore, in the MFEE module, two descriptive models, Key-Value (KV) model and Time-Event-Description (TED) model, are proposed to identify the structure of the knowledge in the narrative texts.
The KV model works to quantify or shorten the description of numerical description in the medical texts. Supposing that D is one of the laboratory data, equations (1) and (2) are used to depict such laboratory items:
K V t ( i ) = ( K i , V i ) t ,   1 i n
D = { K V t ( i ) | i N }
where K stands for the property name, V stands for property value which may include the units of measurement, t stands for the descriptive contents, i is the order in data set D. For instance, a piece of Chinese clinical notes “2008年3月11日出现咽痛,给予阿奇霉素抗感染无效,在我院进行血常规检查:WBC2.13 × 109/L, Hb102g/L, PLT177 × 109/L/L. (11 March 2008, occur pharyngodynia; azithromycin was not effective against infection; blood routine examination in our hospital: WBC2.13 × 109/L, Hb102g/L, PLT177 × 109/L/L)” can be described as follows: KVt(1) = (WBC, 2.13 × 109/L), KVt(2) = (Hb, 102g/L), KVt(3) = (PLT, 177 × 109/L/L), t = 血常规检查 (blood tests). Thus, we obtain D = {KVt(1), KVt(2), KVt(3)}, n = 3.
TED model describes the relationship among time, event, and description, and can be described by Equations (3) and (4):
T E D ( i ) = ( t i , e i , d i ) p s k , 1 i n , { d i } D
p = { s i | { { T E D k | k N } s i , i N } }
where t stands for time node, e represents for medical event description, d stands for medical description, p is the paragraph description and s means segments for a sentence, p stands for a single paragraph from the texts, and p may contains many text blocks symbolized as s, i denotes the ith text block named s. Note that, single text block may contain k TED models, where di stands for the descriptive information D in KV model. Here we use the same example above “2008年3月11日,出现咽痛,给予阿奇霉素抗感染无效,在我院进行血常规检查:WBC2.13 × 109/L, Hb102g/L, PLT177 × 109/L/L. (11 March 2008, occur pharyngodynia; azithromycin was not effective against infection; blood routine examination in our hospital: WBC2.13 × 109/L, Hb102g/L, PLT177 × 109/L/L.)”, we can acquire the following information: TED(1) = (2008-3-11, 出现(occurring), 咽痛(sore throat))、TED(2) = (2008-3-11, 给予阿奇霉素抗感染(given azithromycin against infection), 无效(negative))、TED(3) = (2008-3-11, 进行血常规检查(blood routine examination), (KV(1), KV(2), KV(3)), d3 = (KV(1), KV(2), KV(3)).
Compared with traditional methods that focus on completely analyzing the text structure of medical text and reasoning the semantic relationships among terms in raw text, the use of KV and TED model simplifies the analyzing process by predefining possible text structures that exist in medical text. As a result, many meaningful medical values and events are discovered from the text to support the deep use of medical data. In contrast, traditional methods [18,19] emphasize on the very detailed grammatical relationships in texts, most of which are irrelevant to medical data analysis.
Based on the KV model and TED model, we are able to establish the text descriptive model to structure the Chinese medical texts. In this model, we use temporal information to link all corresponding patient information to acquire a timeline-based model.

3.5. Temporal Information Extraction Module

TIE module works to identify the time related text information in the medical text. The works and phrases of time is the same with those we use in daily life, so we can use existing Natural Language Processing (NLP) tools, such as Stanford NLP [20], to realize this function.

3.6. Temporal Development Model in Patient Condition

TDM-PC in the framework is to illustrate the illness and clinical events in EMR text. Specifically, it can outline the changes of patient condition by identifying the key information from EMR text in corresponding temporal scenario. It is the final stage to acquire structured data. According to the structure of EMR text and the treatment process, TDM-PC is composed of the following stages:
Stage 1: Healthy Status
In our proposed model, this is the very beginning part. In this stage, we need to extract the symptom and preliminary diagnosis information from the EMR text. Current patient condition at this time point will be the initial input of patient state for the following stages.
Stage 2: Hospital Diagnosis
First deterioration of the patients’ condition leads to the complete diagnosis of the patient in the hospital. In the hospital, all of the symptoms of patient are recorded in the clinical notes, including physiological and laboratory results.
Stage 3: Treatment Process
When a patient is admitted, his/her illness related data are recorded continuously during the stay, including the diagnosis, the discussion and decision on the treatment. This stage generates many medical texts.
Stage 4: Medical Treatment
The EMR texts in this stage includes all of the medication information, laboratory data, observation data, etc.
Stage 5: Clinical Follow-Up
When a patient leaves hospital, clinical follow-up information may be acquired according to the health status of patient, to evaluate the long-term changes in the treatment effect of the hospital.
Stage 6: Return Visit
Some of the patients need to come back to hospital for the same illness, which we call a return visit. A return visit is a complete visiting process including all the stages above. These stages cover the whole illness progression of an inpatient from the dimension of temporal sequence. In this study, we use the temporal features to link that information together. In all stages, the condition changes will be recorded in the electronic medical records. Figure 2 illustrates the conceptual model of TDM-PC.
In Figure 2, the horizontal axis is the timeline and vertical axis indicates specific features of the illness description. In EMR text, the different statuses of an illness could be associated with corresponding temporal information in the text. They can be integrated into the different stages of the model.

3.7. Data Flow of MTRTI

The changes of the data structure of the processed EMR text in these modules are illustrated as in Figure 3.
In Figure 3, at first, clinical notes are processed by the grammar module that splits the text into paragraphs, sentences and text segments (Step 1). Then, combining with the TS module which labels the part-of-speech for each text segment to generate a phrase lists (Step 2). Next, according to the part of speech of phrase (Step 3), it establishes the MFEE module, which shows the medical facts and events in different time nodes.

4. Test on the MTRTI

In this section, several tests are implemented to evaluate the performance of MTRTI. The entropy theory, proposed by Shannon, is able to quantify the uncertainties of text, and the uncertainty is an important factor to evaluate the structure degree of the text. In the experiment, we examine the uncertainty of sample text before and after using MTRTI. Thus, if the data structuring process can obviously reduce the information uncertainty, the structuring method is workable.
The evaluation process is divided into 3 phases, which are Sentence Splitting Phase (Phase I), Part-of-speech Tagging Phase (Phase II) and Temporal Information Extraction Phase (Phase III). According to theses phases, we developed the evaluation method flowingly.
Before Phase I, by using information entropy, we need to calculate the information entropy of this raw medical text. Since this medical text is just the raw text from the medical records without any extra information, the calculation of its entropy will be easy because it follows the basic equation of information entropy as in [20]:
H n = i = 1 n p i log 2 p i
In Equation (5), Hn stands for the entropy of medical text, and in each of above phases, it should be re-calculated because of the different forms of the texts after the structuring process. pi stands for the occurrence probability of the single word shown in the texts. n stands for the total number of words in the texts. Since it does not contain extra information to describe the text, the probability of each word is the same (in Chinese, the total number of Chinese characters is set to 2500), so the maximum of information entropy of the specific texts can be calculated as Hn = −log2n.
In Phase I, the information entropy of the texts can be calculated by Equation (6):
H n = 1 m i = 1 m ( j = 1 k i p i , j log 2 p i , j n j )
where m stands for the number of the sentences in the text. nj stands for the number of words in the jth segment of the ith sentence. pi,j is the probability of the jth word of ith sentence. The entropy of text in this phase is the sum of the entropy of each sentence. In our model, a sentence contains many segments, and each of the segments belongs to a sentence. After the structuring process in this phrase, some grammatical relationships can be extracted, so the probability to identify those texts will depend on the position of segment in the sentence. pi,j still equals pi in Equation (5).
The second phase is to recognize the part-of-speech of each segment. In this phase, many terms are tagged properly, making it clearer in the context of the method. Thus, the uncertainty of the texts is continuously reduced. Basically, the equation to calculate the entropy is the same form as that in (6). However, the entropy of their segments in (6) can be calculated by Equation (7):
H s = i = 1 c p ( w ) i log 2 p ( w ) i
where p(w)i can be obtained by Equation (8):
p ( w ) i = n w p i
in which nw is the length of the term.
Since we know the part-of-speech of the terms in this phrase, the probability of each term in Equation (7) can be seen as the degree of importance of a part-of-speech for the texts. Generally, nouns are much more important than prepositions. Thus, the probability of a noun is larger than that of preposition words.
The last phase is to establish the temporal information model based on the structured texts in the second phase. In this phase, we reorganize the structured texts above by introducing the temporal information. By recognizing the part-of-speech of temporal information, we increase the probability of that temporal information in the texts, and recalculate their entropy of the texts as in:
H t l = t = 1 c p t H s ( t )
In the above equation, Htl is the entropy of proposed model involved with temporal information. Hs(t) means the entropy of texts at tth time node, and pt stands for the probability for the medical researchers to find out the knowledge in the texts.
Based on Equations (5)–(9), we implemented some entropy evaluation tests. The first test is to examine the changes of entropy in the three phases above, the evaluation results are shown in Figure 4.
As shown in Figure 4, by comparing the entropy of the specific medical texts (we select three samples of Chinese medical texts in three phases of the proposed model, it can be seen that the entropy of those medical free texts is reduced. This means the medical texts in Phase III (Temporal Information Extraction Phase) contains less uncertainty in illustrating the knowledge of the disease for patients.
The second test is to find out the relation between the entropy of the proposed model and the number of temporal nodes in the medical texts. The evaluation results are shown in Figure 5. In Figure 5, when the amount of temporal information increases, its entropy decreases. This indicates that more temporal information reduces the uncertainty of medical texts for the researchers, which proves that the temporal information is significant for knowledge extraction from medical texts.
At the same time, we analyze the influence of the number of sentences, the number of part-of-speech and the number of segments in the medical texts on the entropy of the proposed model. This is shown in Figure 6, where the increasing number of pieces of medical text agrees with the trend of entropy’s reduction.
Entropy theory provided us with a powerful tool to compare the changes of information uncertainty in the text, and uncertainty is an important indicator to evaluate the text structural degree. According the information based on Equations (5)–(9) and Figure 4, Figure 5 and Figure 6, we are able to conclude that MTRTI reduces the uncertainty of texts in the medical texts for electronic medical records. In practice, it can help the medical researchers work on the computer-based structural data analysis method to mine the potential medical knowledge hidden in the free texts more easily.

5. Conclusions

In order to solve the problem of the difficulty for medical researchers in using medical free texts from accumulated Chinese electronic medical records for better medical diagnosis and treatment, this paper proposed a text structuring framework which is named as MTRTI based on the temporal information. MTRTI is a combination of several modules and models. MTRTI is effective at processing the unstructured EMR texts with temporal information into structured data. The experiments and tests compared the changes of complexity and the entropy when using MTRTI; as a result, it is indicated that the proposed framework is effective at reducing the information uncertainty. This work provide the possibility for the researchers who focus on structured medical data analysis, and enables computer-based medical analysis on the EMR text.
However, according to the evaluation on MTRII, there are also some shortcomings that need to be considered in the future. These texts only have little temporal information, so the entropy is still larger than that in the Phrase II (e.g., Medical Text 1 in Figure 4). This indicates that more temporal information in the texts will make it easier to implement the knowledge discovery procedure in the future. Another problem is in Equation (9). We set the same probability for each tagged word. In fact, different speech tags may have different usability for us. For example, a noun may be more important that a preposition. Thus, the entropy of texts will be less if we consider the different probability of different parts of speech.

Acknowledgments

This work was partially supported by National Natural Science Foundation of China (Grant number 71532002, 61702023), Humanities and Social Science Foundation of Ministry of Education of China (Grant number 17YJC870015), the Fundamental Fund for Humanities and Social Sciences of Beijing Jiaotong University (Grant number 2016JBZD01), and the Fundamental Research Funds for the Central Universities (Grant number 2016YJS057).

Author Contributions

Runtong Zhang and Fuzhi Chu conceived and designed the experiments; Donghua Chen and Xiaopu Shang performed the experiments and analyzed the data.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Perez, J.A.; Poon, C.Y.; Merrifield, R.D.; Wong, S.C.; Yang, G.Z. Big data for health. IEEE J. Biomed. Health Inform. 2015, 19, 1193–1208. [Google Scholar] [CrossRef] [PubMed]
  2. Erdman, A.G.; Keefe, D.F.; Schiestl, R. Grand challenge: Applying regulatory science and big data to improve medical device innovation. IEEE Trans. Biomed. Eng. 2013, 60, 700–706. [Google Scholar] [CrossRef] [PubMed]
  3. Esteban, R.R.; Loging, W.T. Quantifying the complexity of medical research. Bioinformatics 2013, 29, 2918–2924. [Google Scholar] [CrossRef] [PubMed]
  4. Köpcke, F.; Trinczek, B.; Majeed, R.W.; Schreiweis, B.; Wenk, J.; Leusch, T. Evaluation of data completeness in the electronic health record for the purpose of patient recruitment into clinical trials: A retrospective analysis of element presence. BMC Med. Inform. Dec. Mak. Med. Syst. 2013, 13, 1–8. [Google Scholar] [CrossRef] [PubMed]
  5. Zhu, Q.; Tao, C.; Ding, Y. Time-related patient data retrieval for the case studies from the pharmacy genomics research network. J. Med. Syst. 2012, 36, 37–42. [Google Scholar] [CrossRef] [PubMed]
  6. Madkour, M.; Benhaddou, D.; Tao, C. Temporal data representation, normalization, extraction, and reasoning: A review from clinical domain. Comput. Methods Program Biomed. 2016, 128, 52–68. [Google Scholar] [CrossRef] [PubMed]
  7. Karystianis, G.; Sheppard, T.; Dixon, W.G.; Nenadic, G. Modeling and extraction of variability in free-text medication prescriptions from an anonymised primary care electronic medical record research database. BMC Med. Inform. Decis. Mak. 2016, 16, 1–8. [Google Scholar]
  8. Shah, D.; Martinez, C.; Hemingway, H. The free text matching algorithm: A computer program to extract diagnoses and causes of death from unstructured text in electronic health records. BMC Med. Inform. Decis. Mak. 2012, 12, 2010–2026. [Google Scholar] [CrossRef] [PubMed]
  9. Onitilo, A.A.; Stankowski, R.V.; Berg, R.L. A novel method for studying the temporal relationship between type 2 diabetes mellitus and cancer using the electronic medical record. BMC Med. Inform. Decis. Mak. 2014, 14, 1661–1670. [Google Scholar] [CrossRef] [PubMed]
  10. Reeves, R.M.; Ong, F.R.; Matheny, M.E.; Denny, J.C.; Gobbel, G.T.; Montella, D. Detecting temporal expressions in medical narratives. Int. J. Med. Inform. 2013, 82, 118–127. [Google Scholar] [CrossRef] [PubMed]
  11. NiklasNorén, G.; Hopstadius, J.; Bate, A. Temporal pattern discovery in longitudinal electronic patient records. Data Min. Knowl. Discov. 2010, 20, 361–387. [Google Scholar]
  12. Hanauer, D.A.; Ramakrishnan, N. Modeling temporal relationships in large scale clinical associations. J. Am. Med. Inform. Assoc. 2013, 20, 332–341. [Google Scholar] [CrossRef] [PubMed]
  13. Zhou, L.; Melton, G.B.; Parsons, S.; Hripcsak, G. A temporal constraint structure for extracting temporal information from clinical narrative. J. Biomed. Inform. 2006, 39, 424–439. [Google Scholar] [CrossRef] [PubMed]
  14. Zhang, Y.; Gou, L.; Tian, Y.; Li, T.; Zhang, M.; Li, J. Design and development of a sharable clinical decision support system based on a semantic web service framework. J. Med. Syst. 2016, 40, 1–14. [Google Scholar] [CrossRef] [PubMed]
  15. Singh, A.; Nadkarni, G.; Gottesman, O.; Ellis, S.B.; Guttag, J.V. Incorporating temporal EHR data in predictive models for risk stratification of renal function deterioration. J. Biomed. Inform. 2015, 53, 220–228. [Google Scholar] [CrossRef] [PubMed]
  16. Xu, D.; Zhang, M.; Zhao, T.; Chen, G.; Gao, W.; Wei, J. Data-driven information extraction from Chinese electronic medical records. PLoS ONE 2014, 10, 1–18. [Google Scholar] [CrossRef] [PubMed]
  17. Hudson, D.L.; Cohen, M.E. Temporal trend analysis in personal health records. In Proceedings of the IEEE EMBC, Vancouver, BC, Canada, 20–24 August 2008; pp. 3811–3814. [Google Scholar]
  18. Ahltorp, M.; Skeppstedt, M.; Kitajima, S.; Henriksson, A.; Rzepka, R.; Araki, K. Expansion of medical vocabularies using distributional semantics on Japanese patient blogs. J. Biomed. Semant. 2016, 7, 58. [Google Scholar] [CrossRef] [PubMed]
  19. Manning, C.; Surdeanu, M.; Bauer, J.; Finkel, J.; Bethard, S.; McClosky, D. The Stanford CoreNLP natural language processing toolkit. In Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics: System Demonstrations, Baltimore, MD, USA, 23–24 June 2014; pp. 55–60. [Google Scholar]
  20. Shannon, C.E. A mathematical theory of communication. Bell Syst. Tech. J. 1948, 27, 379–423, 623–656. [Google Scholar] [CrossRef]
Figure 1. The architecture of MTRTI.
Figure 1. The architecture of MTRTI.
Ijerph 15 00402 g001
Figure 2. Overview of TDM-PC.
Figure 2. Overview of TDM-PC.
Ijerph 15 00402 g002
Figure 3. Data flow and data format in the MTRTI.
Figure 3. Data flow and data format in the MTRTI.
Ijerph 15 00402 g003
Figure 4. The changes of entropy in four phases (three selected EMR text samples).
Figure 4. The changes of entropy in four phases (three selected EMR text samples).
Ijerph 15 00402 g004
Figure 5. The changes of entropy with the increasing number of temporal nodes in EMR text.
Figure 5. The changes of entropy with the increasing number of temporal nodes in EMR text.
Ijerph 15 00402 g005
Figure 6. The changes of entropy with the increasing of the number of sentences, the number of part-of-speeches, and the number of segments.
Figure 6. The changes of entropy with the increasing of the number of sentences, the number of part-of-speeches, and the number of segments.
Ijerph 15 00402 g006

Share and Cite

MDPI and ACS Style

Zhang, R.; Chu, F.; Chen, D.; Shang, X. A Text Structuring Method for Chinese Medical Text Based on Temporal Information. Int. J. Environ. Res. Public Health 2018, 15, 402. https://doi.org/10.3390/ijerph15030402

AMA Style

Zhang R, Chu F, Chen D, Shang X. A Text Structuring Method for Chinese Medical Text Based on Temporal Information. International Journal of Environmental Research and Public Health. 2018; 15(3):402. https://doi.org/10.3390/ijerph15030402

Chicago/Turabian Style

Zhang, Runtong, Fuzhi Chu, Donghua Chen, and Xiaopu Shang. 2018. "A Text Structuring Method for Chinese Medical Text Based on Temporal Information" International Journal of Environmental Research and Public Health 15, no. 3: 402. https://doi.org/10.3390/ijerph15030402

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop