naohiro701 commited on
Commit
1598d80
·
verified ·
1 Parent(s): 96b3487

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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='スタッスケジュール最適化', layout='wide')
10
- st.title('スタッスケジュール最適化')
11
 
12
  # Introduction and explanations for first-time users
13
  st.markdown("""
14
  ### 概要
15
- このアプリケーションは、1週間のスタッフスケジュールを最適化るのに役立ちます。スタッフのシフト希望や制約条件を考慮し、最スケジュールを計算ます。[ガイドはこちら](https://chatgpt.com/share/6702b7ca-a568-800e-994f-ea37dd3ad02a)。
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