Following are the code snippets in python to be used in CafeEDA's PyCode Tile-
-
Sentiment.py - [To find the sentiment of a column in the input dataset]
-
numerical_operations.py - [To perform numerical operations i.e., addition, subtraction, multiplication and division between numerical columns]
-
neg_pos_count.py - [To calculate the count of positive and negative values for every row in dataset]
-
tf_idf.py - [To calculate and create a vector space of term frequency inverse document frequency of a string column]
-
box_cox.py - [Box-Cox Transform]
-
exp_diff_transformer.py - [Exponentiated difference of two numbers]
-
log_transformer.py - [Converts integer or float column to their Logarithmic form]
-
n_power.py - [To calculate the n exponential power of integer or float columns]
-
n_root_mean.py -[To calculate the n root mean of integer or float columns]
-
rolling_window.py - [To perform TimeSeries feature engineering using rolling window method]
-
Power_transformer.py -[ To perform power transformation for numerical data ]
-
Square_root_transformer.py - [ To perform square_root transformation for numerical data]
-
Rank_transformer.py - [ To perform rank transformation for numerical data]
-
Rank_gauss_transformer.py - [ To perforn rank gauss transformation for numerical data ]
-
onesample_statistical_test.py -[ To perform one sample test]
-
twosample_statistical_test.py -[To perform two sample test]
-
joint_distribution.py -[Joint distribution between two columns]