All Projects → jw3126 → UnitfulRecipes.jl

jw3126 / UnitfulRecipes.jl

Licence: MIT License
Plots.jl recipes for Unitful.jl arrays

Programming Languages

julia
2034 projects

Labels

Projects that are alternatives of or similar to UnitfulRecipes.jl

Ggcharts
Get You to Your Desired Plot Faster
Stars: ✭ 205 (+688.46%)
Mutual labels:  plots
Chia-Plot-Status
GUI Tool for beginners and experts to Monitor and Analyse Chia Plotting log files, show health and progress of running plots and estimated time to completion. No setup, configuration or installation of python or whatever required. Just install and enjoy.
Stars: ✭ 187 (+619.23%)
Mutual labels:  plots
pbPlots
A plotting library available in many programming languages.
Stars: ✭ 71 (+173.08%)
Mutual labels:  plots
Bokeh
Interactive Data Visualization in the browser, from Python
Stars: ✭ 15,822 (+60753.85%)
Mutual labels:  plots
PlotKit
OS X plotting framework
Stars: ✭ 60 (+130.77%)
Mutual labels:  plots
ScalaTIKZ
ScalaTIKZ is an open-source library for PGF/TIKZ vector graphics.
Stars: ✭ 18 (-30.77%)
Mutual labels:  plots
Volbx
Graphical tool for data manipulation written in C++/Qt
Stars: ✭ 187 (+619.23%)
Mutual labels:  plots
vueplotlib
Declarative, interactive, linked 📊📈 components
Stars: ✭ 23 (-11.54%)
Mutual labels:  plots
nspl
scala plotting library
Stars: ✭ 79 (+203.85%)
Mutual labels:  plots
c3
c3 HTMLWidget Ploting
Stars: ✭ 39 (+50%)
Mutual labels:  plots
otvPlots
ovtPlots: An R Package for Variable Level Monitoring
Stars: ✭ 13 (-50%)
Mutual labels:  plots
COVIDvu
Volunteers building and sharing current, accurate, near real-time COVID-19 tracking and prediction tools.
Stars: ✭ 15 (-42.31%)
Mutual labels:  plots
SwiftCharts
Easy to use and highly customizable charts library for iOS
Stars: ✭ 2,405 (+9150%)
Mutual labels:  plots
Ktikz
KtikZ provides a nice user interface for making pictures using TikZ.
Stars: ✭ 233 (+796.15%)
Mutual labels:  plots
fornalder
Visualize long-term trends in collections of Git repositories.
Stars: ✭ 80 (+207.69%)
Mutual labels:  plots
Swiftcharts
Easy to use and highly customizable charts library for iOS
Stars: ✭ 2,336 (+8884.62%)
Mutual labels:  plots
The-Supervised-Learning-Workshop
An Interactive Approach to Understanding Supervised Learning Algorithms
Stars: ✭ 24 (-7.69%)
Mutual labels:  plots
gcpy
Python toolkit for GEOS-Chem.
Stars: ✭ 34 (+30.77%)
Mutual labels:  plots
kicad-exports
Auto generate exports (schematics, gerbers, plots) for any KiCAD5 project.
Stars: ✭ 69 (+165.38%)
Mutual labels:  plots
dataui
data-ui for R
Stars: ✭ 57 (+119.23%)
Mutual labels:  plots

UnitfulRecipes.jl

for plotting data with units seamlessly in Julia

UnitfulRecipes.jl makes it easy to plot data with units.

It works by providing recipes for the Plots.jl package that can deal with units from Unitful.jl. For a quick example,

using Unitful, UnitfulRecipes, Plots
const a = 1u"m/s^2"
v(t) = a * t
x(t) = a/2 * t^2
t = (0:0.01:100)*u"s"
plot(x.(t), v.(t), xlabel="position", ylabel="speed")

should give something like

UnitfulRecipeExample

Head over to the documentation for more examples!

Acknowledgements

Inspired by UnitfulPlots.jl.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].