- Altair https://altair-viz.github.io/gallery/index.html
- bqplot https://github.com/bloomberg/bqplot
- HoloView https://holoviews.org
- Matplotlib https://matplotlib.org/gallery/index.html
- Plotly https://plot.ly/python
This file contains hidden or 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
| #!/bin/bash | |
| tmpfile=/tmp/$USER-$RANDOM | |
| angleCount=$(awk '{ printf "%s %s %s 0.75 1.0\n", $1, $2, $3, $4}' $1 | grep "^[0-9]" | column -t | tee $tmpfile | wc -l) | |
| echo "Angle Count: $angleCount" | |
| cat $tmpfile | |
| rm $tmpfile |
This file contains hidden or 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
| diff -r -u a/src/python-bindings/classad_python_user.cpp b/src/python-bindings/classad_python_user.cpp | |
| --- a/src/python-bindings/classad_python_user.cpp | |
| +++ b/src/python-bindings/classad_python_user.cpp | |
| @@ -48,7 +48,7 @@ | |
| { | |
| if (!Py_IsInitialized()) | |
| { | |
| - char pname[] = "htcondor"; | |
| + wchar_t pname[] = L"htcondor"; | |
| Py_SetProgramName(pname); |