Is this the right way to use Anaconda?: https://www.reddit.com/r/Python/comments/6smine/is_this_the_right_way_to_use_anaconda/
reddit
Is this the right way to use Anaconda? • r/Python
hi, beginner to python here. I'm looking to use certain packages (coding on windows) and several people suggested I use Anaconda to get and manage...
LSTM Networks - The Math of Intelligence (Week 8): https://www.reddit.com/r/Python/comments/6smlzz/lstm_networks_the_math_of_intelligence_week_8/
reddit
LSTM Networks - The Math of Intelligence (Week 8) • r/Python
1 points and 0 comments so far on reddit
How to put a textbox into a tkinter application?: https://www.reddit.com/r/Python/comments/6smojx/how_to_put_a_textbox_into_a_tkinter_application/
reddit
How to put a textbox into a tkinter application? • r/Python
Basic question I know. I decided to learn python and I'm making a basic app with tkinter to learn. Basically it's an app that stores and displays...
Just launched my first production app, and the feeling is amazing: https://www.reddit.com/r/Python/comments/6smmr2/just_launched_my_first_production_app_and_the/
reddit
Just launched my first production app, and the feeling... • r/Python
i work as an oss tech for a bank, i have a semi mathy hs/college background. about a year ago my boss asked if there's any way we could monitor...
Decoding sequences in a GaussianHMM: https://stackoverflow.com/questions/45538826/decoding-sequences-in-a-gaussianhmm
Stackoverflow
Decoding sequences in a GaussianHMM
I'm playing around with Hidden Markov Models for a stock market prediction problem. My data matrix contains various features for a particular security:
01-01-2001, .025, .012, .01
01-02-2001, -.00...
01-01-2001, .025, .012, .01
01-02-2001, -.00...
Python String Conversion 101: Why Every Class Needs a “repr”: https://www.reddit.com/r/Python/comments/6sn556/python_string_conversion_101_why_every_class/
reddit
Python String Conversion 101: Why Every Class Needs a... • r/Python
1 points and 0 comments so far on reddit
Difference in buffering of stdout on Linux and Windows: https://stackoverflow.com/questions/45545810/difference-in-buffering-of-stdout-on-linux-and-windows
Stack Overflow
Difference in buffering of stdout on Linux and Windows
There seems to be a difference in how stdout is buffered on Windows and on Linux when written to console. Consider this small python script:
import time
for i in xrange(10):
time.sleep(1)
...
import time
for i in xrange(10):
time.sleep(1)
...
I've finally made some headway into my first big (to me at least) project and wanted to share my progress.: https://www.reddit.com/r/Python/comments/6snejv/ive_finally_made_some_headway_into_my_first_big/
reddit
I've finally made some headway into my first big (to me... • r/Python
Hi everyone! This is my first post here. Just wanted to share my progress on my first big project. [It started with this...
Is there a reason that a simple-to-use iso8601 parser isn't built into the standard library?: https://www.reddit.com/r/Python/comments/6sns4g/is_there_a_reason_that_a_simpletouse_iso8601/
reddit
Is there a reason that a simple-to-use iso8601 parser... • r/Python
It seems like a no-brainer to me that the datetime module should have an effortless single method for parsing strings like "2017-08-09T17:09:46Z"...
Using Python, AWS Lambda and Twilio to create an interactive VoIP music service: https://www.reddit.com/r/Python/comments/6sotye/using_python_aws_lambda_and_twilio_to_create_an/
reddit
Using Python, AWS Lambda and Twilio to create an... • r/Python
1 points and 0 comments so far on reddit
"expected str, bytes or os.PathLike object, not NoneType" - installing CUDAMat: https://stackoverflow.com/questions/45263030/expected-str-bytes-or-os-pathlike-object-not-nonetype-installing-cudamat
Stackoverflow
"expected str, bytes or os.PathLike object, not NoneType" - installing CUDAMat
I am trying to install cudamat
I have never used GitHub before or installed python packages, so I am new to all of this.
I downloaded the zip file by clicking "clone or download" and clicked "downl...
I have never used GitHub before or installed python packages, so I am new to all of this.
I downloaded the zip file by clicking "clone or download" and clicked "downl...
HDFStore: Efficiency between appending data to an existing table and reindexing vs. creating a new table: https://stackoverflow.com/questions/45548520/hdfstore-efficiency-between-appending-data-to-an-existing-table-and-reindexing
Stackoverflow
HDFStore: Efficiency between appending data to an existing table and reindexing vs. creating a new table
I have several TB of data (in subsets) in flat files that I want to convert to HDF5 using Python Pandas/Pytables/H5py for faster querying and searching. I'm planning to convert each subsection of the
Making pong, need help with paddle implementation: https://www.reddit.com/r/Python/comments/6spuv4/making_pong_need_help_with_paddle_implementation/
reddit
Making pong, need help with paddle implementation • r/Python
In my pong code, I have a general Game class which instantiates a Canvas and Paddle objects within it. I'm using tkinter, and want to represent...
Loading JSON into a GeoDataFrame: https://stackoverflow.com/questions/45552955/loading-json-into-a-geodataframe
Stack Overflow
Loading JSON into a GeoDataFrame
I'm having difficulty loading the following JSON containing GIS data (https://data.cityofnewyork.us/resource/5rqd-h5ci.json) into a GeoDataFrame.
The following code fails when I try to set the geo...
The following code fails when I try to set the geo...