Skip to content
Snippets Groups Projects
Commit fe703c66 authored by Ludovic Claude's avatar Ludovic Claude
Browse files

Fix data sampling

parent d4886d81
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment