Packages

python pandas, plotly, seaborn support & dataframes manipulation

Retired package: Release invalid - mask function was invalid and doesnt work properly

Current section

Files

Jump to
jun src jun_pandas_series.erl
Raw

src/jun_pandas_series.erl

%%
%% This module is a wrapper for some functions in pandas used in Series,
%% using a single pid that holds a dataframe.
%% The pid is an instance of the jun_py_worker module and is capable
%% to execute commands over py interface, keeping the tracking of all transactions
%%
-module(jun_pandas_series).
-export([combine/4]).
%% Binary operator functions
combine(Pid, Series, Series2, Keywords) ->
gen_server:call(Pid, {'core.jun.series', [Series, combine, [Series2], 'None', Keywords]}, infinity).