Fetal Cardiotocography Data
Cardiotocography data
@kaggle.akshat0007_fetalhr
Cardiotocography data
@kaggle.akshat0007_fetalhr
FileName: of CTG examination
Date: of the examination
b: start instant
e: end instant
LBE: baseline value (medical expert)
LB: baseline value (SisPorto)
AC: accelerations (SisPorto)
FM: foetal movement (SisPorto)
UC: uterine contractions (SisPorto)
ASTV: percentage of time with abnormal short term variability (SisPorto)
mSTV: mean value of short term variability (SisPorto)
ALTV: percentage of time with abnormal long term variability (SisPorto)
mLTV: mean value of long term variability (SisPorto)
DL: light decelerations
DS: severe decelerations
DP: prolongued decelerations
DR: repetitive decelerations
Width: histogram width
Min: low freq. of the histogram
Max: high freq. of the histogram
Nmax: number of histogram peaks
Nzeros: number of histogram zeros
Mode: histogram mode
Mean: histogram mean
Median: histogram median
Variance: histogram variance
Tendency: histogram tendency: -1=left assymetric; 0=symmetric; 1=right assymetric
A: calm sleep
B: REM sleep
C: calm vigilance
D: active vigilance
SH: shift pattern (A or Susp with shifts)
AD: accelerative/decelerative pattern (stress situation)
DE: decelerative pattern (vagal stimulation)
LD: largely decelerative pattern
FS: flat-sinusoidal pattern (pathological state)
SUSP: suspect pattern
CLASS: Class code (1 to 10) for classes A to SUSP
NSP:- Normal=1; Suspect=2; Pathologic=3
CREATE TABLE ctg (
"filename" VARCHAR,
"date" TIMESTAMP,
"segfile" VARCHAR,
"b" DOUBLE,
"e" DOUBLE,
"lbe" DOUBLE,
"lb" DOUBLE,
"ac" DOUBLE,
"fm" DOUBLE,
"uc" DOUBLE,
"astv" DOUBLE,
"mstv" DOUBLE,
"altv" DOUBLE,
"mltv" DOUBLE,
"dl" DOUBLE,
"ds" DOUBLE,
"dp" DOUBLE,
"dr" DOUBLE,
"width" DOUBLE,
"min" DOUBLE,
"max" DOUBLE,
"nmax" DOUBLE,
"nzeros" DOUBLE,
"mode" DOUBLE,
"mean" DOUBLE,
"median" DOUBLE,
"variance" DOUBLE,
"tendency" DOUBLE,
"a" DOUBLE,
"b_b66b86" DOUBLE -- B,
"c" DOUBLE,
"d" DOUBLE,
"e_a4a5db" DOUBLE -- E,
"ad" DOUBLE,
"de" DOUBLE,
"ld" DOUBLE,
"fs" DOUBLE,
"susp" DOUBLE,
"class" DOUBLE,
"nsp" DOUBLE
);Anyone who has the link will be able to view this.