Comming from Matlab I feel a little disappointed with Python data manipulation libraries: https://www.reddit.com/r/Python/comments/6wchta/comming_from_matlab_i_feel_a_little_disappointed/
reddit
Comming from Matlab I feel a little disappointed with... • r/Python
As a general purpose language Python is great for fast prototyping with clear syntax and its dynamic nature. The big amount of packages makes it...
Machine learning to categorize: https://www.reddit.com/r/Python/comments/6wcwcl/machine_learning_to_categorize/
reddit
Machine learning to categorize • r/Python
A while ago I found a video where a Python program was fed datasets about flowers and it learned to categorize them. I'm trying to do something...
Preferred method to import local Python modules?: https://www.reddit.com/r/Python/comments/6wd29z/preferred_method_to_import_local_python_modules/
reddit
Preferred method to import local Python modules? • r/Python
I write a lot of Python scripts for personal use and often want to import these into other scripts I am writing. Right now, I accomplish this by...
I created a Python script that tweets Donald Trump every hour asking him to delete his Twitter account. Looking for others to mass tweet him too until he quits tweeting.: https://www.reddit.com/r/Python/comments/6wd9dg/i_created_a_python_script_that_tweets_donald/
reddit
I created a Python script that tweets Donald Trump... • r/Python
1 points and 0 comments so far on reddit
I have any chances to do this?: https://www.reddit.com/r/Python/comments/6we2ri/i_have_any_chances_to_do_this/
reddit
I have any chances to do this? • r/Python
Okay guys sorry for this click bait title but I want to make a program that have an input of 24 random numbers from 1 to 8 that are in 3 random...
New to programming and looking to shift careers.: https://www.reddit.com/r/Python/comments/6wf0nc/new_to_programming_and_looking_to_shift_careers/
reddit
New to programming and looking to shift careers. • r/Python
I've recently been taking an online class on Udemy called Automate the Boring Stuff with Python and I am enjoying it a lot! It was recommended to...
Looking for help using scipy.optimise fsolve and curve_fit to find the equation of a catenary curve given two points and the rope length between them. Any help or insight would be appreciated.: https://www.reddit.com/r/Python/comments/6wf1uq/looking_for_help_using_scipyoptimise_fsolve_and/
reddit
Looking for help using scipy.optimise fsolve and... • r/Python
I am trying to find the equation for the catenary curve bewtween two points given those two points and the length of the "rope". We can assume the...
Help with getting the payload of a UDP packet sent through a socket.: https://www.reddit.com/r/Python/comments/6wff1q/help_with_getting_the_payload_of_a_udp_packet/
reddit
Help with getting the payload of a UDP packet sent... • r/Python
Hi! Im trying to get the bytes of the payload sent through a socket but the function is returning 0. bytes =...
Quick script to delete your reddit comments: https://www.reddit.com/r/Python/comments/6wfqsv/quick_script_to_delete_your_reddit_comments/
reddit
Quick script to delete your reddit comments • r/Python
I noticed the tampermonkey script just edits your comments, not deleting them, so I wrote the following script to do both. You'll need to register...
Are my explanations in green right? What am I not understanding? (Each green comment attempts to explain the functionality of the line of code below): https://www.reddit.com/r/Python/comments/6wgtd4/are_my_explanations_in_green_right_what_am_i_not/
reddit
Are my explanations in green right? What am I not... • r/Python
1 points and 0 comments so far on reddit
Why can you do df.loc(False)['value'] in pandas?: https://stackoverflow.com/questions/45736874/why-can-you-do-df-locfalsevalue-in-pandas
Stackoverflow
Why can you do df.loc(False)['value'] in pandas?
I do not see any documentation on pandas explaining the parameter False passed into loc. Can anyone explain how () and [] differ in this case?
Text[Multi-Level] Classification with many outputs: https://stackoverflow.com/questions/45886616/textmulti-level-classification-with-many-outputs
Stackoverflow
Text[Multi-Level] Classification with many outputs
Problem Statement:
To classify a text document to which category it belongs and also to classify up to two levels of the category.
Sample Training Set:
Description Category Level1 Level2
Th...
To classify a text document to which category it belongs and also to classify up to two levels of the category.
Sample Training Set:
Description Category Level1 Level2
Th...
Write a script that runs a search on internet and returns result: https://www.reddit.com/r/Python/comments/6whkhj/write_a_script_that_runs_a_search_on_internet_and/
reddit
Write a script that runs a search on internet and... • r/Python
Hello everyone, I want to develop a Python script that searches specific keywords and extracts information from their top results(rankings) that...
Gensim word2vec WMD similarity dictionary: https://stackoverflow.com/questions/45876711/gensim-word2vec-wmd-similarity-dictionary
Stackoverflow
Gensim word2vec WMD similarity dictionary
I'm using word2vec on a 1 million abstracts dataset (2 billion words). To find most similar documents, I use the gensim.similarities.WmdSimilarity class. When trying to retrieve the best match using
How to scrape multiple pages in python and get them into csv: https://www.reddit.com/r/Python/comments/6wi1cx/how_to_scrape_multiple_pages_in_python_and_get/
reddit
How to scrape multiple pages in python and get them... • r/Python
The page I am scraping is http://econpy.pythonanywhere.com/ex/001.html. I am using urllib.request and BeautifulSoup; I want to use these libraries...