This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example adapted from https://github.com/JuliaComputing/JuliaBoxTutorials | |
# Assumes that Python and R are also installed in the system | |
# let's compare various implementations of the sum(x) function | |
x = rand(10^7) | |
sum(x) # expected result 5×10⁶ | |
#------------------------ | |
# Python implementation | |
using PyCall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x1 | x2 | x3 | y | |
---|---|---|---|---|
-0.16485239157797732 | -0.2218786857477146 | 0.025657251025896506 | 1 | |
-0.14138283354447023 | -0.18115496792737906 | -0.08881228951195215 | 2 | |
-0.19156671553489246 | -0.21063046433580623 | -0.2917535547111554 | 3 | |
-0.279588288598788 | -0.27721378406398256 | 0.015351159741035935 | 4 | |
-0.3226797091143479 | -0.3261822936012488 | 0.10225411867529889 | 2 | |
0.36719732717363746 | 0.4162419801073728 | 0.15575307734063756 | 2 | |
-0.2758953203829891 | -0.2474704632695943 | -0.14546736263944215 | 2 | |
-0.271400774910694 | -0.26209306422374024 | -0.005437600507968055 | 4 | |
-0.4938512097624689 | -0.3518243528882096 | -0.07185283149402386 | 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.009 | |
0.0043 | |
0.0037 | |
0.004 | |
0.0007 | |
0.0017 | |
0.0067 | |
0.0036 | |
0.0 | |
0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
436752.5063770672 | 7.002732207281135e6 | 1091.6719319246122 | |
---|---|---|---|
436752.4993687796 | 7.002731878090095e6 | 1090.6907038049 | |
436752.4911755157 | 7.002731493238734e6 | 1089.5435675490046 | |
436547.05392508034 | 7.002792941698978e6 | 1154.8998124225907 | |
436547.22980068414 | 7.002793181897359e6 | 1154.3445954747062 | |
436547.36938449665 | 7.002793372530995e6 | 1153.9039471033693 | |
436547.56898934854 | 7.002793645137093e6 | 1153.2738199323574 | |
436547.77836506744 | 7.002793931087548e6 | 1152.612847375352 | |
436547.98215743364 | 7.002794209412655e6 | 1151.9695007532 | |
436548.197116505 | 7.002794502988454e6 | 1151.290902261341 |
OlderNewer