Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 495 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 495 Bytes

MyMethods.jl

MyMethods.jl is a Julia package with common methods from applied econometrics.

Installation

The package may be directly loaded from GitHub using Pkg:

using Pkg;
Pkg.add(url="https://github.com/thomaswiemann/MyMethods.jl")

Load Package

After installation, load the package in your current Julia session per the usual command:

using MyMethods

Remove Package

The package may be removed using Pkg:

using Pkg;
Pkg.rm("MyMethods")