Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
portal-backend
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HBP Medical Informatics Platform
portal-backend
Commits
fe703c66
Commit
fe703c66
authored
7 years ago
by
Ludovic Claude
Browse files
Options
Downloads
Patches
Plain Diff
Fix data sampling
parent
d4886d81
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/eu/hbp/mip/utils/DataUtil.java
+33
-17
33 additions, 17 deletions
src/main/java/eu/hbp/mip/utils/DataUtil.java
with
33 additions
and
17 deletions
src/main/java/eu/hbp/mip/utils/DataUtil.java
+
33
−
17
View file @
fe703c66
...
...
@@ -33,25 +33,41 @@ public class DataUtil {
for
(
String
var
:
vars
)
{
JsonArray
currentVarData
=
new
JsonArray
();
int
nbRows
=
(
int
)
countDatasetRows
();
if
(
nbRows
<
1
)
{
return
data
;
}
int
nb_samples
=
Math
.
min
(
nbRows
,
MAX_NB_SAMPLES
);
int
samplingPercentage
=
100
*
nb_samples
/
nbRows
;
List
<
Object
>
queryResult
=
jdbcTemplate
.
queryForList
(
"SELECT "
+
var
+
" FROM "
+
featuresMainTable
+
" "
+
"TABLESAMPLE SYSTEM ("
+
samplingPercentage
+
") REPEATABLE ( "
+
TABLESAMPLE_SEED
+
" )"
,
Object
.
class
);
for
(
Object
value
:
queryResult
)
{
String
strValue
=
String
.
valueOf
(
value
);
try
{
double
numValue
=
Double
.
parseDouble
(
strValue
);
currentVarData
.
add
(
numValue
);
}
catch
(
NumberFormatException
e2
)
{
currentVarData
.
add
(
strValue
);
long
nbRows
=
countDatasetRows
();
if
(
nbRows
>=
1
)
{
long
nb_samples
=
Math
.
min
(
nbRows
,
MAX_NB_SAMPLES
);
int
samplingPercentage
=
(
int
)
(
100
*
nb_samples
/
nbRows
);
List
<
Object
>
queryResult
=
jdbcTemplate
.
queryForList
(
String
.
format
(
"SELECT %s FROM %s TABLESAMPLE SYSTEM (%d) REPEATABLE (%d)"
,
var
,
featuresMainTable
,
samplingPercentage
,
TABLESAMPLE_SEED
),
Object
.
class
);
for
(
Object
value
:
queryResult
)
{
if
(
value
==
null
)
{
currentVarData
.
add
((
String
)
null
);
}
else
{
if
(
value
instanceof
Double
)
{
currentVarData
.
add
((
Double
)
value
);
}
else
if
(
value
instanceof
Float
)
{
currentVarData
.
add
((
Float
)
value
);
}
else
if
(
value
instanceof
Integer
)
{
currentVarData
.
add
((
Integer
)
value
);
}
else
if
(
value
instanceof
Long
)
{
currentVarData
.
add
((
Long
)
value
);
}
else
{
String
strValue
=
String
.
valueOf
(
value
);
try
{
double
numValue
=
Double
.
parseDouble
(
strValue
);
currentVarData
.
add
(
numValue
);
}
catch
(
NumberFormatException
e2
)
{
currentVarData
.
add
(
strValue
);
}
}
}
}
data
.
add
(
var
,
currentVarData
);
}
data
.
add
(
var
,
currentVarData
);
}
return
data
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment