Misha Mikhasenko
Misha Mikhasenko
One more edition to README.md. I just figured out how to post Plots.jl plot: ```julia using Plots import Plotly: post, signin # plotlyjs() p = plot(rand(10)) plt_o = Plots.plotlyjs_syncplot(p) #...
Just created #63 . It would close this issue
it is 600Mb, are you willing to download :) ?
https://cernbox.cern.ch/index.php/s/AzrPeo78d0bPGMA ```julia f = ROOTFile(joinpath(pathto_folder, "Ob2XicKK_tree.root")) f["DecayTree"] # ERROR: zlib error: incorrect header check (code: -3) # f = ROOTFile(joinpath(pathto_folder, "Ob2XicpKpi_tree.root")) f["DecayTree"] # ERROR: UndefVarError: TBasket not defined ``` thanks!
(edited) I misread the message first No, I started with `UnROOT` today. I will let you know if notice it with other files.
ah, perhaps, the cernbox took time to upload it
under the `pyplot` the caps have the color of marker, not the stroke,  ```julia pyplot() # the caps would be red in gr() plot(rand(10), yerr=rand(10), lab="data", l=nothing, m=(4,stroke(:red, 1.5)))...
Yes, most likely. I thought it might work if stacking equations with align (in Base.show). Might be a bit tricky with closing the environment
Thanks for pointing where the problem might be. My project with tensor is paused now, but I hope to come back to it in the future.
It seems to be solved with ``` expr = 1/Symbolics.Term(sqrt, 2))^2 # r1 = @rule sqrt(~x)^2 => ~x r2 = @rule (~x/~y)^2 => (~x)^2 / (~y)^2 # simplify(expr, RuleSet([r1,r2])) ```