All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datastax.data.exploration.service.chart.BoxPlotService Maven / Gradle / Ivy

package com.datastax.data.exploration.service.chart;

import com.datastax.data.exploration.dto.BoxPlotData;

import java.util.List;

/**
 * 箱形图服务接口
 * @author charles create on 12/18/17
 */
public interface BoxPlotService {

    /**
     * 从数据集中获取所有可转换为数值型的数据,即所有可用于箱形图表示的字段
     *
     * @param id 数据集ID
     * @return 返回数据集id中所有可转换为数值型的数据
     */
    BoxPlotData getDataAll(String id);

    /**
     * 获取可用于箱形图表示的数据
     * @param id 要读取的数据集文件名
     * @return 返回数据集中所有可用于箱形图表示的数据
     */
    List getBoxplotColumns(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy