Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions mgwr/api.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .gwr import GWR, MGWR
from .sel_bw import Sel_BW

180 changes: 180 additions & 0 deletions mgwr/notebooks/GWR_Georgia_example.ipynb

Large diffs are not rendered by default.

215 changes: 215 additions & 0 deletions mgwr/notebooks/GWR_prediction_example.ipynb

Large diffs are not rendered by default.

531 changes: 531 additions & 0 deletions mgwr/notebooks/MGWR_Georgia_example.ipynb

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@
except ImportError:
from distutils.command.build_py import build_py

Major = 1
Feature = 0
Bug = 1
version = '%d.%d.%d' % (Major, Feature, Bug)

setup(name='mgwr', #name of package
version='1.0.0',
version=version,
description='multiscale geographically weighted regression', #short <80chr description
url='https://github.com/TaylorOshan/mgwr', #github repo
maintainer='Taylor M. Oshan',
Expand Down