You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using DataFrames
Herd = [1,1,2,2,2,3,3,3,3];
Sire = ["ZA","AD","BB","AD","AD","CC","CC","AD","AD"];
Yield = [110,100,110,100,100,110,110,100,100];
dat = DataFrame(Herd=Herd, Sire = Sire, Yield = Yield);
dat
I have to use ExcelFiles.save("dat.xlsx",dat) to do it, and save("dat.xlsx",dat) show Errors:
using ExcelFiles
save("dat.xlsx",dat) # Error
ExcelFiles.save("dat.xlsx",dat) # Worked
Error message:
julia> using ExcelFiles
julia> save("dat.xlsx",dat)
ERROR: UndefVarError: save not defined
Stacktrace:
[1] top-level scope at none:0
julia> ExcelFiles.save("dat.xlsx",dat)
I want to save a DataFrame as Excel:
I have to use ExcelFiles.save("dat.xlsx",dat) to do it, and
save("dat.xlsx",dat)
show Errors:Error message:
My status:
The text was updated successfully, but these errors were encountered: