It is used to investigate the dependence between multiple variables at the same time and to highlight the most correlated variables in a data table.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
362B

  1. {
  2. "datafile": "{{ datafile }}",
  3. "corr_vars": {{ corr_vars|json|safe }},
  4. "method": "{{ method|default:"square" }}",
  5. "corr_type": "{{ corr_type|default:"full" }}",
  6. "hc_method": "{{ hc_method|default:"complete" }}",
  7. "hc_order": {{ hc_order }},
  8. "sig_level": {{ sig_level|default:0.05 }},
  9. "title": "{{ title|default:"This is a correlation plot" }}"
  10. }