Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,13 +6,13 @@ import xlsxwriter
|
|
| 6 |
import plotly.graph_objects as go
|
| 7 |
|
| 8 |
# Streamlit UI setup
|
| 9 |
-
st.set_page_config(page_title='
|
| 10 |
-
st.title('
|
| 11 |
|
| 12 |
# Introduction and explanations for first-time users
|
| 13 |
st.markdown("""
|
| 14 |
### 概要
|
| 15 |
-
|
| 16 |
|
| 17 |
---
|
| 18 |
|
|
|
|
| 6 |
import plotly.graph_objects as go
|
| 7 |
|
| 8 |
# Streamlit UI setup
|
| 9 |
+
st.set_page_config(page_title='シフト最適化', layout='wide')
|
| 10 |
+
st.title('シフト最適化')
|
| 11 |
|
| 12 |
# Introduction and explanations for first-time users
|
| 13 |
st.markdown("""
|
| 14 |
### 概要
|
| 15 |
+
シフトを作成するアプリケーションです。スタッフのシフト希望や連勤制約などの制約条件を考慮して、総出勤時間が最小となるシフトを作成します。線形最適化問題として定式化して、計算を行います。[ガイドはこちら](https://chatgpt.com/share/6702b7ca-a568-800e-994f-ea37dd3ad02a)。
|
| 16 |
|
| 17 |
---
|
| 18 |
|