-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Writing to latex: omitting column with row index #1381
Comments
I don't think so. I think the purpose of the |
This may be something Latexify.jl could be helpful for. using DataFrames
using Latexify
df = DataFrame(A = 'x':'z', B = ["M", "F", "F"])
latexify(df; env=:table, latex=false) outputs:
I don't often use DataFrames myself, so I haven't spent much time on tweaking the interface between DataFrames and Latexify. But there is already some rudimentary support and it might be rather easy to improve it if anyone is interested. |
Can this be closed? |
Yes can be closed - I'm happily writing tables using both DataFrames package and write command. |
Is it possible to write a dataframe to tex without including a column that just has the row numbers?
The text was updated successfully, but these errors were encountered: