暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }