26 bool import()
noexcept;
30 bool drop_irow(
DAPyDataFrame& df,
const QList< int >& index)
noexcept;
32 bool drop_icolumn(
DAPyDataFrame& df,
const QList< int >& index)
noexcept;
36 bool insert_column(
DAPyDataFrame& df,
int c,
const QString& name,
const QVariant& defaultvalue = QVariant())
noexcept;
37 bool insert_column(
DAPyDataFrame& df,
int c,
const QString& name,
const QVariant& start,
const QVariant& stop)
noexcept;
40 bool to_csv(
const DAPyDataFrame& df,
const QString& path,
const QString& sep)
noexcept;
42 bool to_excel(
const DAPyDataFrame& df,
const QString& path)
noexcept;
44 bool to_pickle(
const DAPyDataFrame& df,
const QString& path)
noexcept;
46 bool to_parquet(
const DAPyDataFrame& df,
const QString& path)
noexcept;
48 bool from_pickle(
DAPyDataFrame& df,
const QString& path)
noexcept;
50 bool from_parquet(
DAPyDataFrame& df,
const QString& path)
noexcept;
54 bool setnan(
DAPyDataFrame& df,
const QList< int >& rowsIndex,
const QList< int >& colsIndex)
noexcept;
56 bool cast_to_num(
DAPyDataFrame& df,
const QList< int >& colsIndex, pybind11::dict args)
noexcept;
57 bool cast_to_datetime(
DAPyDataFrame& df,
const QList< int >& colsIndex, pybind11::dict args)
noexcept;
59 bool set_index(
DAPyDataFrame& df,
const QList< int >& colsIndex)
noexcept;
67 const QString& how = QStringLiteral(
"any"),
68 const QList< int >& indexs = QList< int >(),
69 std::optional< int > thresh = std::nullopt)
noexcept;
71 bool fillna(
DAPyDataFrame& df,
double value,
int limit)
noexcept;
73 bool interpolate(
DAPyDataFrame& df,
const QString& method,
int order,
int limit)
noexcept;
75 bool ffillna(
DAPyDataFrame& df,
int axis,
int limit)
noexcept;
77 bool bfillna(
DAPyDataFrame& df,
int axis,
int limit)
noexcept;
79 bool dropduplicates(
DAPyDataFrame& df,
const QString& keep,
const QList< int >& indexs)
noexcept;
81 bool nstdfilteroutlier(
DAPyDataFrame& df,
double n,
int axis,
const QList< int >& indexs)
noexcept;
83 bool clipoutlier(
DAPyDataFrame& df,
double lowervalue,
double uppervalue,
int axis)
noexcept;
85 bool queryDatas(
DAPyDataFrame& df,
const QString& expr)
noexcept;
87 QList< QPair< int, int > > searchData(
const DAPyDataFrame& df,
const QString& expr)
noexcept;
89 bool evalDatas(
DAPyDataFrame& df,
const QString& expr)
noexcept;
91 bool sort(
DAPyDataFrame& df,
const QString& by,
bool ascending)
noexcept;
93 bool dataselect(
DAPyDataFrame& df,
double lowervalue,
double uppervalue,
const QString& index)
noexcept;
97 const QStringList& value,
98 const QStringList& index,
99 const QStringList& columns,
100 const QString& aggfunc,
102 const QString& marginsName,