Skip to content

Commit

Permalink
pluto notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mhamdi committed Dec 22, 2024
1 parent c49d12b commit e84efe7
Show file tree
Hide file tree
Showing 8 changed files with 211 additions and 10,121 deletions.
1,941 changes: 21 additions & 1,920 deletions Codes/Julia/Part-2/Pluto/kmeans.jl

Large diffs are not rendered by default.

1,941 changes: 21 additions & 1,920 deletions Codes/Julia/Part-2/Pluto/knn.jl

Large diffs are not rendered by default.

15 changes: 7 additions & 8 deletions Codes/Julia/Part-2/Pluto/logistic-regression.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### A Pluto.jl notebook ###
# v0.20.3
# v0.20.4

#> [frontmatter]
#> title = "Logistic Regression"
Expand All @@ -14,7 +14,10 @@ using Markdown
using InteractiveUtils

# ╔═╡ 6e6d37c7-5f08-446a-a7e4-163b496bcfd4
import Pkg; Pkg.activate("..")
begin
cd(@__DIR__)
import Pkg; Pkg.activate("..")
end

# ╔═╡ 7e8e0022-0faa-4efb-b1c3-1441c5945a0e
using CSV, DataFrames
Expand All @@ -23,21 +26,18 @@ using CSV, DataFrames
using MLJ

# ╔═╡ b09f7411-867e-487a-95cd-9ca967c0799d
using Plots
using Plots; theme(:dracula)

# ╔═╡ a037e28a-71ac-4556-bbe8-6dd888904aae
md"# LOGISTIC REGRESSION"

# ╔═╡ 0b7e3ad5-a41e-43ce-9588-c53d98428bb2
md"
```julia
versioninfo() # -> v\"1.11.1\"
versioninfo() # -> v\"1.11.2\"
```
"

# ╔═╡ 7cf9eb93-a06e-45e7-b850-c37e1fc32913
cd(@__DIR__)

# ╔═╡ 2f71b33c-e4c3-4d5b-b376-3055742ab879
md"Import librairies"

Expand Down Expand Up @@ -167,7 +167,6 @@ html"""
# ╔═╡ Cell order:
# ╠═a037e28a-71ac-4556-bbe8-6dd888904aae
# ╠═0b7e3ad5-a41e-43ce-9588-c53d98428bb2
# ╠═7cf9eb93-a06e-45e7-b850-c37e1fc32913
# ╠═6e6d37c7-5f08-446a-a7e4-163b496bcfd4
# ╠═2f71b33c-e4c3-4d5b-b376-3055742ab879
# ╠═7e8e0022-0faa-4efb-b1c3-1441c5945a0e
Expand Down
Loading

0 comments on commit e84efe7

Please sign in to comment.