Johannes Fleck
Johannes Fleck
Great - thanks! I am not familiar with json but I use matlab a lot. Will be happy to support you.
The one I know and work with is the script package for Atom. It does not allow to debug the Matlab code though.
Octave is open source and almost completely compatible with Matlab. The latest distributions come with a GUI and include a built-in debugger. This could be another reference to look into.
It would definitely meet my requirements. I still use the native Matlab IDE for most of my code development but like to run and make minor adjustments in environments which...
Thanks for pointing this out @ragavsathish I am not working with Matclipse and just saw that it requires to install several eclipse components. Same problem as for Octave might apply......
@greimel It seems both throw the same error. (Am I including the command as you expect?) `regtable(table2_C_tot; renderSettings = latexOutput(), estim_decoration = RegressionTables.make_estim_decorator(breaks=[], sym=""))` ERROR: MethodError: no method matching make_estim_decorator(::Array{Float64,1},...
@jmboehm Thanks for the explanation and the Discourse link! It might be useful to clarify and illustrate the (non-default) use of `estim_decoration` in the readme. (Maybe it's just helpful for...
Quick follow up: This does what I was after: `regtable(table2_C_tot; renderSettings = latexOutput(), estim_decoration = make_estim_decorator() )` Thanks to both of you! (@jmboehm If you think it's useful, I'll be...
Sorry for the confusion. To clarify and relate back to my questions: > How can I disable this function so that no stars are printed? - regtable(rr1, renderSettings = latexOutput(),...
Agree - I saw these default settings it in the source code but it's definitely clearer/safer this way.