|
template<typename T > |
std::shared_ptr< arrow::ChunkedArray > | getData (T p) |
|
template<> |
std::shared_ptr< arrow::ChunkedArray > | getData< std::shared_ptr< arrow::ChunkedArray > > (std::shared_ptr< arrow::ChunkedArray > p) |
|
RDataFrame | MakeArrowDataFrame (std::shared_ptr< arrow::Table > table, std::vector< std::string > const &columns) |
| Factory method to create a Apache Arrow RDataFrame. More...
|
|
RDataFrame | MakeCsvDataFrame (std::string_view fileName, bool readHeaders=true, char delimiter=',', Long64_t linesChunkSize=-1LL) |
| Factory method to create a CSV RDataFrame. More...
|
|
template<typename... ColumnTypes> |
RDataFrame | MakeLazyDataFrame (std::pair< std::string, RResultPtr< std::vector< ColumnTypes > > > &&... colNameProxyPairs) |
| Factory method to create a Lazy RDataFrame. More...
|
|
RDataFrame | MakeRootDataFrame (std::string_view treeName, std::string_view fileNameGlob) |
|
RDataFrame | MakeSqliteDataFrame (std::string_view fileName, std::string_view query) |
| Factory method to create a SQlite RDataFrame. More...
|
|
RInterface< RDFDetail::RLoopManager, RTrivialDS > | MakeTrivialDataFrame (ULong64_t size, bool skipEvenEntries=false) |
|
template<typename F , typename Args = typename ROOT::TypeTraits::CallableTraits<typename std::decay<F>::type>::arg_types_nodecay, typename Ret = typename ROOT::TypeTraits::CallableTraits<typename std::decay<F>::type>::ret_type> |
auto | Not (F &&f) -> decltype(RDFInternal::NotHelper(Args(), std::forward< F >(f))) |
| Given a callable with signature bool(T1, T2, ...) return a callable with same signature that returns the negated result. More...
|
|
template<class T1 , class T2 > |
bool | operator!= (const RResultPtr< T1 > &lhs, const RResultPtr< T2 > &rhs) |
|
template<class T1 > |
bool | operator!= (const RResultPtr< T1 > &lhs, std::nullptr_t rhs) |
|
template<class T1 > |
bool | operator!= (std::nullptr_t lhs, const RResultPtr< T1 > &rhs) |
|
template<class T1 , class T2 > |
bool | operator== (const RResultPtr< T1 > &lhs, const RResultPtr< T2 > &rhs) |
|
template<class T1 > |
bool | operator== (const RResultPtr< T1 > &lhs, std::nullptr_t rhs) |
|
template<class T1 > |
bool | operator== (std::nullptr_t lhs, const RResultPtr< T1 > &rhs) |
|
template<std::size_t N, typename T , typename F > |
auto | PassAsVec (F &&f) -> RDFInternal::PassAsVecHelper< std::make_index_sequence< N >, T, F > |
| PassAsVec is a callable generator that allows passing N variables of type T to a function as a single collection. More...
|
|
template<typename NodeType > |
std::string | SaveGraph (NodeType node) |
| Create a graphviz representation of the dataframe computation graph, return it as a string. More...
|
|
template<typename NodeType > |
void | SaveGraph (NodeType node, const std::string &outputFile) |
| Create a graphviz representation of the dataframe computation graph, write it to the specified file. More...
|
|