Terms

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/58

flashcard set

Earn XP

Description and Tags

Flashcards of key terms and definitions from the eHealth lecture.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

59 Terms

1
New cards

Data

Raw facts or measurements without context (e.g., blood pressure 180/110).

2
New cards

Information

Data with meaning and context (e.g., blood pressure 180/110 is classified as "high").

3
New cards

Knowledge

Understanding what information means and what actions to take (e.g., high blood pressure needs treatment to reduce heart disease risk).

4
New cards

KDD (Knowledge Discovery in Databases)

The process of discovering useful knowledge from data through: data collection, preprocessing, pattern finding, and interpretation.

5
New cards

Narrative Data

Free-text clinical notes written by healthcare providers about patient symptoms, treatments, and plans.

6
New cards

Structured Text Data

Data that follows a predefined format, such as standardized forms or coded data.

7
New cards

Numerical Measurement Data

Quantitative values representing health parameters (e.g., blood pressure, temperature).

8
New cards

Signal Data

Continuous recordings of physiological processes over time (e.g., ECG, EEG).

9
New cards

Image Data

Visual representations of body structures (e.g., X-rays, CT scans, MRIs).

10
New cards

Nominal Scale

Categories with no inherent order (e.g., blood types A, B, AB, O).

11
New cards

Ordinal Scale

Categories with a meaningful order but unequal intervals (e.g., pain scale 1-10).

12
New cards

Interval Scale

Equal intervals between values but no true zero (e.g., temperature in Celsius).

13
New cards

Ratio Scale

Equal intervals with a meaningful zero point (e.g., weight, height).

14
New cards

PPG (Photoplethysmography)

Technology that measures blood volume changes in vessels using light to determine heart rate and other cardiovascular metrics.

15
New cards

ECG (Electrocardiogram)

Technology that measures the electrical activity of the heart using electrodes on the skin.

16
New cards

Green Light PPG

PPG technology using green light, which provides good signal-to-noise ratio but is affected by skin tone and limited in tissue penetration.

17
New cards

Infrared Light PPG

PPG technology using infrared light, which penetrates deeper into tissue and is less affected by skin tone.

18
New cards

HRV (Heart Rate Variability)

The variation in time intervals between successive heartbeats, reflecting autonomic nervous system function.

19
New cards

AVNN

Average of inter-beat intervals; a time-domain HRV metric.

20
New cards

SDNN

Standard deviation of inter-beat intervals; a time-domain HRV metric indicating overall HRV.

21
New cards

RMSSD

Root mean square of successive differences between normal heartbeats; a time-domain HRV metric reflecting parasympathetic activity.

22
New cards

PWV (Pulse Wave Velocity)

The speed at which the pressure wave moves along an artery, calculated as distance divided by time delay between pulse waves.

23
New cards

Data Mining

The process of discovering patterns in data that are non-trivial, hidden, and potentially useful.

24
New cards

Descriptive Data Mining

Finding patterns in existing data without making predictions (e.g., clustering, association rule mining).

25
New cards

Predictive Data Mining

Using historical data patterns to make predictions about future outcomes (e.g., classification, regression).

26
New cards

Supervised Learning

Machine learning approach that uses labeled training data to learn a model for prediction.

27
New cards

Unsupervised Learning

Machine learning approach that finds patterns in unlabeled data without predefined categories.

28
New cards

Clustering

Grouping similar data objects together while keeping dissimilar objects in different groups, without using predefined categories.

29
New cards

K-means Clustering

A partitioning method that divides data into k clusters by minimizing the distance between data points and their assigned cluster centers.

30
New cards

Partitioning Around Medoids (PAM)

A clustering algorithm similar to K-means but uses actual data points as cluster centers instead of calculated means.

31
New cards

Classification

Assigning items to predefined categories based on patterns learned from labeled training data.

32
New cards

Regression

Finding a formula to predict a numerical value based on other information.

33
New cards

Attribute Selection

The process of choosing only relevant features from data and ignoring irrelevant ones to improve model performance.

34
New cards

Attribute Construction

Creating new, more useful features from existing ones to help find patterns not visible in original data.

35
New cards

Confusion Matrix

A table showing prediction performance with True Positives, False Positives, True Negatives, and False Negatives.

36
New cards

Accuracy

The proportion of correct predictions: (TP + TN) / (TP + TN + FP + FN).

37
New cards

Sensitivity (True Positive Rate)

The proportion of actual positives correctly identified: TP / (TP + FN).

38
New cards

Specificity (True Negative Rate)

The proportion of actual negatives correctly identified: TN / (TN + FP).

39
New cards

Black-box Model

Model that provides predictions without explaining its reasoning process (e.g., neural networks, SVMs).

40
New cards

White-box Model

Model that provides interpretable decision processes (e.g., decision trees, rule-based systems).

41
New cards

Cross-Validation

A technique to evaluate model performance by partitioning data into multiple training and testing subsets.

42
New cards

K-fold Cross-Validation

Dividing data into k equal parts, using k-1 parts for training and 1 part for testing, repeating k times with a different test set each time.

43
New cards

Stratification

Ensuring each fold in cross-validation has approximately the same proportion of class values as the original dataset.

44
New cards

LOOCV (Leave-One-Out Cross-Validation)

A special case of k-fold cross-validation where k equals the number of examples, using all but one example for training.

45
New cards

Workflow

A representation of a sequence of operations, defined as a work process consisting of a set of tasks with specific ordering.

46
New cards

Task Set

The collection of all tasks in a workflow, denoted as T = {T₁, T₂, …, Tₘ}.

47
New cards

Precedence Matrix

A matrix P = (Pᵢⱼ)ₘₓₘ where Pᵢⱼ = 1 indicates task j must be completed before task i can start.

48
New cards

Conflict Matrix

A matrix C = (cᵢⱼ)ₘₓₘ where cᵢⱼ = 1 indicates tasks i and j cannot be performed simultaneously.

49
New cards

Precondition Set

For each task, the set of tasks that must be completed before it can start, denoted as A = (A(T₁), A(T₂), …, A(Tₘ)).

50
New cards

Task State 0

Task is not executable and not executed previously.

51
New cards

Task State 1

Task is executable and not executed previously.

52
New cards

Task State 2

Task is not executable and executed previously.

53
New cards

Task State 3

Task is executable and executed previously.

54
New cards

Initial State

The starting state of a workflow, denoted as S₀.

55
New cards

Bayes' Theorem

P(A|B) = [P(B|A) × P(A)] / [P(B|A) × P(A) + P(B|A^c) × P(A^c)].

56
New cards

Prior Probability

The estimated probability of an event before considering new evidence (e.g., disease prevalence in population).

57
New cards

Posterior Probability

The updated probability after incorporating new evidence (e.g., probability of disease after test result).

58
New cards

Sensitivity in Bayes' Theorem

The probability of a positive test given the presence of disease: P(B|A).

59
New cards

Specificity in Bayes' Theorem

The probability of a negative test given the absence of disease: P(B^c|A^c).