Here, is the list of all the computed functions in StellarAi
Sr. No. |
Computation Function |
Syntax |
Description |
Example |
1 |
diff |
idiff = @diff( `parameter_name` ) |
This function adds a new column to the data, storing the difference between consecutive data points of selected parameters. |
InstDist = `IN_Vehicle_speed` * (@diff(`internal_time`)/3600) |
2 |
cumSum |
cumsum = @cumSum( `parameter_name` ) |
This function adds a new column to the data by calculating the cumulative sum. |
cumsum = @cumSum( `internal_time` ) cumsum = @cumSum( `internal_time` ) |
3 |
Getcurvesmoothen |
curve_smoothen = @getCurveSmoothen( `parameter_name` ) |
This function adds a new column smoothening the selected parameter using 3 adjacent points. It reduces the noise from cyclic data. |
curve_smoothen = @getCurveSmoothen( `Vechicle_speed` ) |
4 |
GetCurveSmoothen5 |
curve_smoothen = @getCurveSmoothen5( `parameter_name` ) |
This function adds a new column smoothening the selected parameter using 5 adjacent points. It reduces the noise from cyclic data. |
curve_smoothen = @getCurveSmoothen5(`Vehicle_speed`) |
5 |
GetcurvesmoothenDynamic |
curve_smoothen = @getCurveSmoothenDynamic( `parameter_name`,time_value) |
This function adds a new column dynamically smoothening the selected parameter using time interval as an input to adapt to different data patterns and trends. |
curve_smoothen = @getCurveSmoothenDynamic( `vehicle_speed`,1) |