forked from carpentries-lab/good-enough-practices
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from csiro-data-school/spr-0124
Updates to chapters 4-9 ahead of CSIRO Data School Jan '24 inc. new page on Agile methodology
- Loading branch information
Showing
6 changed files
with
74 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
title: 'Agile' | ||
teaching: 60 | ||
exercises: 0 | ||
--- | ||
|
||
::::::::::::::::::::::::::::::::::::::: objectives | ||
|
||
- Learn some basic concepts of the 'Agile' methodology | ||
|
||
:::::::::::::::::::::::::::::::::::::::::::::::::: | ||
|
||
## What is 'Agile' | ||
|
||
'Agile' is a project management methodology, particularly for software development, | ||
built around a 4 point philosophical [manifesto](https://agilemanifesto.org/) | ||
and a 12 point set of [principles](https://agilemanifesto.org/principles.html). | ||
|
||
Agile is typified by small teams that self-organise ('scrum') on how they will | ||
address a backlog of requested work, in short cycles ('sprints'), by breaking | ||
problems into small tasks, with frequent feedback and result delivery. It is a | ||
highly iterative approach to planning, that allows for high flexibility and less | ||
forward planning. A sprint may last 1-4 weeks, in which time an entire cycle of | ||
planning, designing, implmenting, testing and delivering takes place, with small | ||
tasks hopefully addressed to completion, followed by a review and retrospective | ||
that may or may not end up influencing the next sprint cycle. | ||
|
||
[Framework at a glance diagram](https://www.planview.com/resources/guide/agile-methodologies-a-beginners-guide/basics-benefits-agile-method/) | ||
|
||
[Contrast to waterfall model](https://www.guru99.com/agile-methodology-in-software-testing.html) | ||
|
||
[Roles and user stories](https://www.tutorialspoint.com/agile/agile_primer.htm) | ||
|
||
[Atlassian on scrums, Kanban and Jira visualisations](https://www.atlassian.com/agile/project-management) | ||
|
||
|
||
:::::::::::::::::::::::::::::::::::::::: keypoints | ||
|
||
- The Agile approach is to break problems into smaller tasks and fully address them | ||
in short, iterative work cycles (sprints), with each cycle ending in review and discussion | ||
before planning the next cycle. | ||
- Aspects of this approach may be useful in data science work. | ||
|
||
:::::::::::::::::::::::::::::::::::::::::::::::::: | ||
|
||
|