Skip to content
Snippets Groups Projects
Commit 7a4fbd88 authored by Florian Ziemen's avatar Florian Ziemen
Browse files

add a bit on the output

parent d00a26b0
No related branches found
No related tags found
1 merge request!51User experience lecture
......@@ -445,6 +445,27 @@ Take safe_copy.py and add useful error messages and return codes.
# Output
## stdout and stderr
* stdout is for ouput somebody else might want to process
`grep bash /etc/bashrc | wc `
* stderr is for *error* messages
`grep bash file_that_does_not_exist |wc`
## Datasets
* a dataset is a way to communicate information
* clarity in the dataset structure is clear communication
* group things together that belong together
* follow standards
## Dataset normalization
(normal as in orthogonal, not *the usual mess*)
* Idea: Only provide information that is not already contained otherwise.
* Keeps your dataset clean
* Balance with the effort it takes to compute information that you optimized out.
* Provide scalars as scalars, not as 3D fields / ...
* Aggregation levels can be worth the extra data / effort
# Take-home: take a user's perspective! {.special}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment