cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

How to import adaptive sampling on Thingworx?

嘉吳_10657286
3-Visitor

How to import adaptive sampling on Thingworx?

As subject, I would like to import adaptive sampling on Thingworx before transporting the data into DataBase, or the other way is adaptive adjust the interval of data consumption?

2 REPLIES 2

Hi 嘉吳_10657286,

Thank you for your question.

I encourage you to bring more details and context to your initial inquiry. This will make it easier for you to receive meaningful help from other Community members..
 
Regards,
Andra

You can use any available method to get your data into ThingWorx, e.g. ValueStreams, with arbitrary sampling. Then you can interpolate / regularize it using this service:

let result = Resources["InfoTableFunctions"].Interpolate({
	mode: undefined /* STRING */,
	timeColumn: undefined /* STRING */,
	t: undefined /* INFOTABLE */,
	ignoreMissingData: undefined /* BOOLEAN {"defaultValue":true} */,
	stats: undefined /* STRING */,
	endDate: undefined /* DATETIME */,
	columns: undefined /* STRING */,
	count: undefined /* NUMBER */,
	startDate: undefined /* DATETIME */
});

 

Top Tags