暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OutlierMode.cs 405B

1234567891011121314151617181920
  1. using System;
  2. namespace Unity.PerformanceTesting.Statistics
  3. {
  4. /// <summary>
  5. /// Outlier removal mode.
  6. /// </summary>
  7. public enum OutlierMode
  8. {
  9. /// <summary>
  10. /// Do not remove outliers.
  11. /// </summary>
  12. DontRemove,
  13. /// <summary>
  14. /// Remove outliers using the Tukey fences method.
  15. /// </summary>
  16. Remove
  17. }
  18. }