The axis is just a scene object, making it easy to manipulate and share between plots.
axis
@library_ref[example] "Axis 2D"
| @example axis | |
| using Makie | |
| scene = Scene(resolution = (500, 500)) | |
| aviz = axis(linspace(0, 2, 4), linspace(0, 2, 4)) | |
| center!(scene) | |
| save("axis2d.png", scene); nothing # hide | |
|  |
| @cell "Axis 2D" [axis] begin | |
| scene = Scene(@resolution) | |
| aviz = axis(linspace(0, 2, 4), linspace(0, 2, 4)) | |
| center!(scene) | |
| end |
Some things takes much less time and stress once you know the right tool. Below, there is a community edited list of software for scientists.
in General purpose text/code editors. It may be better to have a good editor for everything, than different ones for different languages, scripts, notes.
| #!/sbin/sh | |
| # | |
| # /system/addon.d/changeDPIto420.sh | |
| # | |
| # Copyright Anthony Wang, 2016 | |
| # | |
| # This script is based on http://forum.xda-developers.com/google-nexus-5/help/help-script-to-lcd-density-t2862245 | |
| # the original code of which is "sed -i 's/density=480/density=420/g' /system/build.prop;" | |
| # but has been improved in this current script. | |
| # The "sed" command: https://www.gnu.org/software/sed/manual/sed.txt |