This file contains hidden or 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
| https://runawayhorse001.github.io/LearningApacheSpark/ |
This file contains hidden or 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
| https://dzone.com/articles/pyspark-join-explained-with-examples | |
| https://datascience-enthusiast.com/Python/big_data_spark_part2 |
This file contains hidden or 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
| http://www.malinc.se/math/latex/basiccodeen.php |
This file contains hidden or 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
| https://stackoverflow.com/questions/59172728/pandas-dataframe-groupby-a-col-if-value-present-in-the-group-by-row-assign-the-s | |
| data = { | |
| 's_id' :['G1','','','','G2','G3','G3','G4','','',''], | |
| 'r_id' : [2,2,12,12,20,45,45,9,13,13,14], | |
| } | |
| df2 = pd.DataFrame.from_dict(data) | |
| df2 |
This file contains hidden or 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
| update-the-same-value-of-parent-column-as-child-list-values-in-pandas-data-frame | |
| https://stackoverflow.com/questions/58803012/update-the-same-value-of-parent-column-as-child-list-values-in-pandas-data-frame/58804527#58804527 |
This file contains hidden or 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
| https://www.daniweb.com/programming/software-development/threads/70426/replace-words-in-a-file | |
| https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.lookup.html |
This file contains hidden or 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
| pip3 install --upgrade --force-reinstall --no-cache-dir jupyter | |
| https://github.com/jupyter/jupyter_core/issues/127 | |
| sudo /opt/miniconda2/bin/jupyter notebook --ip=0.0.0.0 --port=8888 --allow-root & | |
| https://mapr.com/blog/configure-jupyter-spark-python/ |
This file contains hidden or 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
| https://www.youtube.com/watch?v=d2zwYZFi4wQ -- Lec 19 | Applied Optimization | l∞, l0 norm balls and Matrix propertie | IIT Kanpur |
This file contains hidden or 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
| https://www.techrepublic.com/article/how-to-install-the-gnome-desktop-on-ubuntu-server-18-04/ |
This file contains hidden or 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
| # Install tmux on rhel/centos 7 | |
| # install deps | |
| yum install gcc kernel-devel make ncurses-devel | |
| # DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL | |
| curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz | |
| tar -xvzf libevent-2.0.22-stable.tar.gz | |
| cd libevent-2.0.22-stable | |
| ./configure --prefix=/usr/local |