Skip to content

Commit

Permalink
Fix DataFrame call in Homework 3
Browse files Browse the repository at this point in the history
  • Loading branch information
east-winds committed Nov 6, 2021
1 parent e35fb71 commit 73b15c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Homeworks/Homework-03.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"Reference: https://jump.dev/JuMP.jl/v0.19/containers/\n",
"=#\n",
"function value_to_df_2dim(var)\n",
" solution = DataFrame(var.data)\n",
" solution = DataFrame(var.data, :auto)\n",
" ax1 = var.axes[1]\n",
" ax2 = var.axes[2]\n",
" cols = names(solution)\n",
Expand Down

0 comments on commit 73b15c5

Please sign in to comment.