├── .github ├── CODE_OF_CONDUCT.md └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── books.md ├── images ├── aiconf.png ├── awesome.gif └── datacommit.png └── papers.md /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: MultiGroup 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/README.md -------------------------------------------------------------------------------- /books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/books.md -------------------------------------------------------------------------------- /images/aiconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/images/aiconf.png -------------------------------------------------------------------------------- /images/awesome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/images/awesome.gif -------------------------------------------------------------------------------- /images/datacommit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/images/datacommit.png -------------------------------------------------------------------------------- /papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-MultiGroup/DMG-Data-Science-Awesome/HEAD/papers.md --------------------------------------------------------------------------------