what is credit in data mining?

2017-10-15 Thread Umar Yusuf
Hello, Anyone useful idea or material on: credit in data mining? -- https://mail.python.org/mailman/listinfo/python-list

Help in creating a dynamic/loop based on variables and CSV files

2016-12-10 Thread Umar Yusuf
Hi all, I need your help with any of these questions? 1- http://stackoverflow.com/questions/41083699/python-create-dynamic-loop-based-on-variables-and-csv 2- http://stackoverflow.com/questions/41081800/python-pandas-how-to-use-dataframe-cell-to-search-another-dataframe-column-and Thanks in adv

Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-28 Thread Umar Yusuf
Websites to learn python programming? Try these links:- http://umar-yusuf.blogspot.com.ng/2016/03/70-free-python-programming-language.html http://www.sololearn.com/Course/Python/ http://www.afterhoursprogramming.com/tutorial/Python/Overview/ http://www.pyschools.com/ -- https://mail.python.or

Mask two images with python

2018-12-18 Thread Umar Yusuf
Hello there, How do I supper impose an image design on a transparent png image? I have tried to use OpenCV's "cv2.bitwise_and" function to no success. I posted the detail question here: https://stackoverflow.com/questions/53791510/python-opencv-mask-and-glow Thank you for your time. -- https:/

Re: Mask two images with python

2018-12-21 Thread Umar Yusuf
On Wednesday, 19 December 2018 19:22:51 UTC+1, Oscar Benjamin wrote: > On Wed, 19 Dec 2018 at 05:42, Umar Yusuf wrote: > > > > Hello there, > > How do I supper impose an image design on a transparent png image? > > > > I have tried to use OpenCV's "

Re: Mask two images with python

2018-12-23 Thread Umar Yusuf
On Wednesday, 19 December 2018 06:36:01 UTC+1, Umar Yusuf wrote: > Hello there, > How do I supper impose an image design on a transparent png image? > > I have tried to use OpenCV's "cv2.bitwise_and" function to no success. I > posted the detail question here

Need help generating Contour and HeatMap plots

2017-03-07 Thread Umar Yusuf
Hello house, I kindly need your input here >> http://stackoverflow.com/questions/42655870/matplotlib-convert-scatter-plot-to-contour-and-heatmap-plots -- https://mail.python.org/mailman/listinfo/python-list

Read JSON file correctly

2017-04-01 Thread Umar Yusuf
How do I read this json file correctly? Details at: http://stackoverflow.com/questions/43152368/python-unicodedecodeerror-charmap-codec-cant-decode-byte-0x81-in-position -- https://mail.python.org/mailman/listinfo/python-list

Open this XML file to create dataframe in Python

2017-05-26 Thread Umar Yusuf
Hello, How do I open this XML file to create Python pandas dataframe? https://www.dropbox.com/s/83e9r36z39zj8ve/sample.xml?dl=0 https://www.dropbox.com/home?preview=sample.xml -- https://mail.python.org/mailman/listinfo/python-list

Python BeautifulSoup extract html table cells that contains images and text

2017-07-25 Thread Umar Yusuf
Hi all, I need help extracting the table from this url...? from bs4 import BeautifulSoup url = "https://www.marinetraffic.com/en/ais/index/ports/all/per_page:50"; headers = {'User-agent': 'Mozilla/5.0'} raw_html = requests.get(url, headers=headers) raw_data = raw_html.text soup_data = Beautiful