Skip to content

Commit

Permalink
docs: add development guidelines (#40)
Browse files Browse the repository at this point in the history
Closes #16.

### Summary of Changes

Add development guidelines to documentation. The original issue is no
longer needed.
  • Loading branch information
lars-reimann authored Mar 14, 2023
1 parent a1c0d97 commit 71dc669
Show file tree
Hide file tree
Showing 2 changed files with 207 additions and 0 deletions.
204 changes: 204 additions & 0 deletions docs/development/guidelines.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
# Guidelines

This document describes general guidelines for the Safe-DS Python Library. In the **DO**/**DON'T** examples below we either show _client code_ to describe the code users should/shouldn't have to write, or _library code_ to describe the code we, as library developers, need to write to achieve readable client code. We'll continuously update this document as we find new categories of usability issues.

## Prefer a usable API to simple implementation

It's more important to provide a user-friendly API to many people than to save some of our time when implementing the functionality.

## Document API elements

All classes should have

* a short description,
* examples that show how to use them correctly,
* a description of their attributes.

All functions should have

* a short description,
* examples that show how to use them correctly,
* a description of their parameters,
* a description of their results,
* a description of any exceptions that are raised.

The documentation should follow the [numpydoc](https://numpydoc.readthedocs.io/en/latest/format.html) format.

## Test non-trivial functions

If a function contains more code than just the getting or setting of a value, automated test should be added to the [`tests`][tests-folder] folder. The file structure in the tests folder should mirror the file structure of the [`src`][src-folder] folder.

## Prefer named functions to overloaded operators

The names can better convey the intention of the programmer and enable better auto-completion.

!!! success "**DO** (client code):"

```py
table.keep_columns("name", "age")
```

!!! failure "**DON'T** (client code):"

```py
table[["name", "age"]]
```

## Prefer methods to global functions

This aids discoverability and again enables better auto-completion. It also supports polymorphism.

!!! success "**DO** (client code):"

```py
model.fit(training_data)
```

!!! failure "**DON'T** (client code):"

```py
fit(model, training_data)
```

## Prefer separate functions to functions with a flag parameter

Some flag parameters drastically alter the semantics of a function. This can lead to confusion, and, if the parameter is optional, to errors if the default value is kept unknowingly. In such cases having two separate functions is preferable.

!!! success "**DO** (client code):"

```py
table.drop_columns("name")
```

!!! failure "**DON'T** (client code):"

```py
table.drop("name", axis="columns")
```

## Avoid uncommon abbreviations

Write full words rather than abbreviations. The increased verbosity is offset by better readability, better functioning auto-completion, and a reduced need to consult the documentation when writing code. Common abbreviations like CSV or HTML are fine though, since they rarely require explanation.

!!! success "**DO** (client code):"

```py
figure.set_color_scheme(ColorScheme.AUTUMN)
```

!!! failure "**DON'T** (client code):"

```py
figure.scs(CS.AUT)
```

## Specify types of parameters and results

Use [type hints](https://docs.python.org/3/library/typing.html) to describe the types of parameters and results of functions. This enables static type checking of client code.

!!! success "**DO** (library code):"

```py
def add_ints(a: int, b: int) -> int:
return a + b
```

!!! failure "**DON'T** (library code):"

```py
def add_ints(a, b):
return a + b
```

## Use narrow data types

Use data types that can accurately model the legal values of a declaration. This improves static detection of wrong client code.

!!! success "**DO** (client code):"

```py
SupportVectorMachine(kernel=Kernel.LINEAR) # (enum)
```

!!! failure "**DON'T** (client code):"

```py
SupportVectorMachine(kernel="linear") # (string)
```

## Check preconditions of functions and fail early

Not all preconditions of functions can be described with type hints but must instead be checked at runtime. This should be done as early as possible, usually right at the top of the body of a function. If the preconditions fail, execution of the function should halt and either a sensible value be returned (if possible) or an exception with a descriptive message be raised.

!!! success "**DO** (library code):"

```py
def nth_prime(n: int) -> int:
if n <= 0:
raise ValueError(f"n must be at least 1 but was {n}.")

# compute nth prime
```

!!! failure "**DON'T** (library code):"

```py
def nth_prime(n: int) -> int:
# compute nth prime
```

## Raise either Python exceptions or custom exceptions

The user should not have to deal with exceptions that are defined in the wrapper libraries. So, any exceptions that may be raised when a third-party function is called should be caught and a core Python exception or a custom exception should be raised instead. The exception to this rule is when we call a callable created by the user: In this case, we just pass any exceptions thrown by this callable along.

!!! success "**DO** (library code):"

```py
def read_csv(path: str) -> Table:
try:
return pd.read_csv(path) # May raise a pd.ParserError
except pd.ParserError as e:
raise FileFormatException("The loaded file is not a CSV file.") from e
```

!!! failure "**DON'T** (library code):"

```py
def read_csv(path: str) -> Table:
return pd.read_csv(path) # May raise a pd.ParserError
```

## Group API elements by task

Packages should correspond to a specific task like classification or imputation. This eases discovery and makes it easy to switch between different solutions for the same task.

!!! success "**DO** (client code):"

```py
from sklearn.classification import SupportVectorMachine
```

!!! failure "**DON'T** (client code):"

```py
from sklearn.svm import SupportVectorMachine
```

## Group values that are used together into an object

Passing values that are commonly used together around separately is tedious, verbose, and error prone.

!!! success "**DO** (client code):"

```py
training_data, validation_data = split(full_data)
```

!!! failure "**DON'T** (client code):"

```py
training_feature_vectors, validation_feature_vectors, training_target_values, validation_target_values = split(feature_vectors, target_values)
```

[src-folder]: https://github.com/Safe-DS/Stdlib/tree/main/src
[tests-folder]: https://github.com/Safe-DS/Stdlib/tree/main/tests
3 changes: 3 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ nav:
- Data Visualization: tutorials/data_visualization.md
- Machine Learning: tutorials/machine_learning.md
- API Reference: reference/
- Development:
- Guidelines: development/guidelines.md

# Configuration of MkDocs & Material for MkDocs --------------------------------

Expand Down Expand Up @@ -57,6 +59,7 @@ plugins:
- glightbox
- search
- mkdocs-jupyter:
include: ["*.ipynb"]
execute: true
allow_errors: false
include_source: true
Expand Down

0 comments on commit 71dc669

Please sign in to comment.