Filter Outlier functionality?

Hi

I added the following code to configuration.yaml and restarted HA.

Does this mean that what is reported from the entity sensor.northq_watt_calculat_143 is now filtered?

Thanks!

sensor:
  - platform: filter
    name: "Energy Sensor Outlier filter"
    entity_id: sensor.northq_watt_calculat_143
    filters:
      - filter: outlier
        window_size: 4
        radius: 10000

I think I can answer this myself now, after less than a day a value that should have been filtered turned up in the graph, so it seems it does not. THen the question is, how du I get the filtered values to show!?

Ok, so after some trial and error it turns out that there is a new entity created with the name as given in the yaml code, and this entity is what should be choosen instead of the original sensor entity, in order to get the filtered values. So in my case the name of the entity is “Energy Sensor Outlier filter”. Now it seems to work.