File size: 488 Bytes
3af04c7 3c32096 3af04c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
from src.features.utils import corr_analysis
def corr_presentation(acf_array):
[acf_array_1,
df,
significant_non_zero_correlations_count] = corr_analysis(acf_array)
with st.expander('Autocorrelations:'):
st.write(acf_array_1)
with st.expander('Significant Autocorrelations:'):
st.metric(label='Total significant autocorrelations:',
value=significant_non_zero_correlations_count)
st.dataframe(df)
|