Are the tf.data.experimental.CsvDataset
available in (https://methods)) enough to perform data wrangling and transformation usually done using libraries like scipy, numpy and pandas? . for example, i have been trying to perform an equivalent of the below line of pandas code using dataset methods but couldn’t find the suitable one for it. Looking forward to your reply.
sum_of_features = {}
for col in features:
sum_of_features[col] = sum_ofs[col].groupby(["year", "month", "day", "second"]).sum(col)