cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar

Binning Continues Date Time data

Is there any way in JMP to convert a column of date time (continuous) into categorical data bins (also date time). For example 6 hour bins..?
1 REPLY 1
gflex
Level III

Re: Binning Continues Date Time data

You can use the Round function to get to the nearest decimal.
If the time (in seconds) is transformed such that your desired units of time are at the decimal place, a round (0) will give the "binning" effect. Then transform back to seconds.
Round( :Time / (60 * 60 * 6), 0 ) * (60 * 60 * 6)

Ceiling or Floor functions could be used in lieu of "Round" for different effects at the decimal point.