streamlit

Форк
0
/
st_dataframe_dimensions.py 
43 строки · 1.4 Кб
1
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2024)
2
#
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
# you may not use this file except in compliance with the License.
5
# You may obtain a copy of the License at
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9
# Unless required by applicable law or agreed to in writing, software
10
# distributed under the License is distributed on an "AS IS" BASIS,
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14

15
import numpy as np
16
import pandas as pd
17

18
import streamlit as st
19
from tests.streamlit import snowpark_mocks
20

21
# Explicitly seed the RNG for deterministic results
22
np.random.seed(0)
23

24
data = np.random.randn(100, 100)
25

26
df = pd.DataFrame(data)
27
st.dataframe(df)
28
st.dataframe(df, 250, 150)
29
st.dataframe(df, width=250)
30
st.dataframe(df, height=150)
31
st.dataframe(df, 5000, 5000)
32
st.dataframe(df, use_container_width=True)
33

34
small_df = pd.DataFrame(np.random.randn(100, 3))
35
st.dataframe(small_df, width=500)
36
st.dataframe(small_df, use_container_width=True)
37
st.dataframe(small_df, width=200, use_container_width=True)
38
st.dataframe(small_df, width=200, use_container_width=False)
39

40
one_col_df = pd.DataFrame(np.random.randn(100, 1))
41
st.dataframe(one_col_df, use_container_width=True)
42

43
st.dataframe(snowpark_mocks.DataFrame(), use_container_width=True)
44

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.