Pavanmahaveer Singara

Results 6 comments of Pavanmahaveer Singara

import pandas as pd list_input = [1.1, 2.2, 3.3, float('nan')] series_input = pd.Series(list_input) pd.cut(list_input, 2) pd.cut(series_input, 2) Output for List: [(1.098, 2.2], (1.098, 2.2], (2.2, 3.3], NaN] Categories (2, interval[float64,...

So here if we are looking to change any format of date column, by using strftime function we could make the possible changes to the date values.

Hi , we cannot add this resize functionality to initial data parsers right? as we know in tf.resize has this resizebynearestneighbour functionality so its usually done at the time of...

Hey HI team, I was reading about our documentation and ended up checking this. how are we finding out whether tensor is packed or unpacked , is by doing profiling...

As we are having B columns in both dfs and if we wanna do join, here we could explicitly specify joined_df = gdf1.sjoin_nearest(gdf2, lsuffix=suffix_left, rsuffix=suffix_right, how="inner") it good to lsuffix=suffix_left...