Hi, is there any ways I could change the output results name of node results?
For instance, in file below I want the output file to show Day. So, instead of output file “cluster_9” I want it to be “Day_9”
I use the string manipulation but it still showing cluster name.
Use this expression in a String Manipulation node after the K-Means node in your workflow: regexReplace($Cluster$, "cluster", "Day")
P.S. By your workflow I mean the workflow you have for your real task where the K-Means node is used for clustering and you are going to create separate files for each cluster.