change @benchmark to @btime

This commit is contained in:
Bogumił Kamiński 2022-03-26 07:10:18 +01:00
parent e736e3bed8
commit 4d3f9546ea

View File

@ -96,8 +96,9 @@ df1.Popularity === puzzles.Popularity
df2.Rating === puzzles.Rating
df2.Popularity === puzzles.Popularity
@benchmark $puzzles[:, ["Rating", "Popularity"]]
@benchmark $puzzles[!, ["Rating", "Popularity"]]
using BenchmarkTools
@btime $puzzles[:, ["Rating", "Popularity"]];
@btime $puzzles[!, ["Rating", "Popularity"]];
puzzles[1, 1]
puzzles[[1], 1]