Is there an efficient way to generate a histogram of dates (time stamps) in Knime? The histogram node doesn’t accept dates as input. As a work around, I can think of two inefficient approaches:
Use Date&Time to String node followed by a group by count and bar plot. The problem with this is that I am limited to monthly or yearly bin ranges.
Use Python View node (works great, but it’s not KNIME).
@mlauber71 this example workflow is very impressive and something I will consider for the future. My question was primarily about finding a simple solution such as the as the KNIME Histogram View which is available for numeric data. For now, a Python View using a Pandas/Matplotlib histogram plot will work for me.