PDSサイクル
経営管理活動
の
サイクル
である
plan-do-see cycle
ある目的を達するために
、
計画
(
plan
)し、
行動
(
do
)し、
その結果
を
分析
し、
その分析
に
基づいて
計画する
(
see
)
という 3つの
ステップ
をまわす(
循環
させる)
合理的
かつ
効果的
に
業務
を
進める
ための
マネジメント
の
基本的
な
活動パターン
のこと。
マネジメントサイクル
(
management cycle
)
https://plantuml-proxy.vercel.app/svg/https://scrapbox.io/api/code/suto3/PDSサイクル/pds01.pu#.svg
code:pds01.pu
@startdot
digraph pds {
label="PDSサイクル";
node
fontsize = 12, shape = box, style=rounded
;
s1
label="Plan(計画)"
;
s2
label="Do(実行)"
;
s3
label="See(評価・見直し)"
;
s1 -> s2 -> s3;
s3 -> s1;
{rank = same; s2; s3;}
}
@enddot