markdown
stringlengths
0
37k
code
stringlengths
1
33.3k
path
stringlengths
8
215
repo_name
stringlengths
6
77
license
stringclasses
15 values
Surprise! Try out this well-supported recommender package
!pip install scikit-surprise import surprise X.melt() X.index.name = "track_id" X.head().reset_index().melt(id_vars=['track_id']) X.sample(replace=False, frac=1.0)
jlab-ml-lunch-2/notebooks/01-Recommender-System.ipynb
BDannowitz/polymath-progression-blog
gpl-2.0
Load data Weight Myfitnesspal Weightgurus Running Runkeeper Strava
weight_gurus = pd.read_csv('data/raw/weight-gurus-history.csv') weight_gurus.head() weight_gurus['Weight (lb)'].plot() mfp = pd.read_csv('data/raw/myfitnesspal-export.csv') mfp = mfp.dropna(subset=['Weight']) mfp.head() mfp.Weight.plot() strava = pd.read_csv('data/raw/strava-activities.csv') strava = strava[strava[...
running-weight-plot/Running-Weight-Data-Cleaning.ipynb
BDannowitz/polymath-progression-blog
gpl-2.0
Convert dates to datetime
from datetime import datetime from datetime import time weight_gurus_dt_format = "%b %d %Y %I:%M:%S %p" mfp_dt_format = "%Y-%m-%d" strava_dt_format = "%b %d, %Y, %I:%M:%S %p" runkeeper_dt_format = "%Y-%m-%d %H:%M:%S" weight_gurus = weight_gurus.rename(columns={'Date/Time': 'Date'}) weight_gurus['Date'] = weight_gurus...
running-weight-plot/Running-Weight-Data-Cleaning.ipynb
BDannowitz/polymath-progression-blog
gpl-2.0
Combine weight data sources
weight_gurus = weight_gurus.rename(columns={'Weight (lb)': 'Weight'}) weight_cols = ['Date', 'Weight'] weight_df = pd.concat([ mfp[weight_cols], weight_gurus[weight_cols] ]) weight_df = weight_df.sort_values('Date') weight_df.head()
running-weight-plot/Running-Weight-Data-Cleaning.ipynb
BDannowitz/polymath-progression-blog
gpl-2.0
Combine running data sources Strava has elapsed time in seconds and distance in km Calculate distance in miles Calculate pace and duration in decimal minutes (for tying to plot attributes) Calculate pace and duration as string MM:SS (minutes per mile) for display
# Convert km -> mi strava['Distance'] = strava['Distance'] * 0.621371 # Calculate pace (in decimal minutes) strava['Pace_min'] = strava['Elapsed Time'] / (60*strava['Distance']) # Calculate duration (in decimal minutes) strava['Duration_min'] = strava['Elapsed Time']/60.0 from math import floor def decimal_minute_t...
running-weight-plot/Running-Weight-Data-Cleaning.ipynb
BDannowitz/polymath-progression-blog
gpl-2.0
Encapsulate procedure into functions Give your code a home! Put this into a file for posterity!
WG_DT_FORMAT = "%b %d %Y %I:%M:%S %p" MFP_DT_FORMAT = "%Y-%m-%d" RUNKEEPER_DT_FORMAT = "%Y-%m-%d %H:%M:%S" STRAVA_DT_FORMAT = "%b %d, %Y, %I:%M:%S %p" WEIGHT_COLS = ["Date", "Weight"] RUN_COLS = ['Date', 'Name', 'Description', 'Distance', 'Pace', 'Duration', 'Pace_min', 'Duration_min', 'Tracker'] def proc...
running-weight-plot/Running-Weight-Data-Cleaning.ipynb
BDannowitz/polymath-progression-blog
gpl-2.0
But, this is a painful way to construct responses. Hence, other high level abstractions are available. Example, following one liner will give us the same response packet.
from proxy.http.responses import okResponse print(okResponse().tobytes())
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
Notice how okResponse will always add a Content-Length header for you. You can also customize other headers
response = okResponse( headers={ b'X-Custom-Header': b'my value', }, ) print(response.tobytes())
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
Let's add some content to our response packet
response = okResponse( content=b'Hello World', headers={ b'X-Custom-Header': b'my value', }, ) print(response.tobytes())
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
Note, how okResponse automatically added a Content-Length header for us. Depending upon --min-compression-length flag, okResponse will also perform compression for content. Example, default value for min compression length is 20.
response = okResponse( content=b'H' * 21, headers={ b'X-Custom-Header': b'my value', }, ) print(response.tobytes())
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
You can pass a custom value for min_compression_length kwarg to okResponse.
response = okResponse( content=b'H' * 21, headers={ b'Host': b'jaxl.com', }, min_compression_length=21, ) print(response.tobytes())
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
Internally, okResponse uses build_http_response and hence you can also pass any argument also accepted by build_http_response. Example, it supports a conn_close argument which will add a Connection: close header. Simply, pass conn_close=True.
response = okResponse( content=b'Hello World', headers={ b'Host': b'jaxl.com', }, conn_close=True, ) print(response.tobytes())
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
Chunked Encoding You can also send chunked encoded responses.
from proxy.http.parser import ChunkParser chunks = ChunkParser.to_chunks(b'Hello World', chunk_size=5) response = okResponse( content=chunks, headers={ b'Transfer-Encoding': b'chunked', }, # Avoid compressing chunks for demo purposes here # Ideally you should omit this flag and send # c...
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
If we omit the min_compression_length flag
response = okResponse( content=chunks, headers={ b'Transfer-Encoding': b'chunked', }, ) print(response.tobytes())
tutorial/responses.ipynb
abhinavsingh/proxy.py
bsd-3-clause
Visualize source time courses (stcs) This tutorial focuses on visualization of :term:source estimates <STC>. Surface Source Estimates First, we get the paths for the evoked data and the source time courses (stcs).
import os.path as op import numpy as np import matplotlib.pyplot as plt import mne from mne.datasets import sample, fetch_hcp_mmp_parcellation from mne.minimum_norm import apply_inverse, read_inverse_operator from mne import read_evokeds data_path = sample.data_path() meg_path = data_path / 'MEG' / 'sample' subjects...
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Then, we read the stc from file.
stc = mne.read_source_estimate(fname_stc, subject='sample')
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
This is a :class:SourceEstimate <mne.SourceEstimate> object.
print(stc)
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
The SourceEstimate object is in fact a surface source estimate. MNE also supports volume-based source estimates but more on that later. We can plot the source estimate using the :func:stc.plot <mne.SourceEstimate.plot> just as in other MNE objects. Note that for this visualization to work, you must have PyVista i...
initial_time = 0.1 brain = stc.plot(subjects_dir=subjects_dir, initial_time=initial_time, clim=dict(kind='value', lims=[3, 6, 9]), smoothing_steps=7)
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
You can also morph it to fsaverage and visualize it using a flatmap.
stc_fs = mne.compute_source_morph(stc, 'sample', 'fsaverage', subjects_dir, smooth=5, verbose='error').apply(stc) brain = stc_fs.plot(subjects_dir=subjects_dir, initial_time=initial_time, clim=dict(kind='value', lims=[3, 6, 9]), surface='flat', h...
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Note that here we used initial_time=0.1, but we can also browse through time using time_viewer=True. In case PyVista is not available, we also offer a matplotlib backend. Here we use verbose='error' to ignore a warning that not all vertices were used in plotting.
mpl_fig = stc.plot(subjects_dir=subjects_dir, initial_time=initial_time, backend='matplotlib', verbose='error', smoothing_steps=7)
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Volume Source Estimates We can also visualize volume source estimates (used for deep structures). Let us load the sensor-level evoked data. We select the MEG channels to keep things simple.
evoked = read_evokeds(fname_evoked, condition=0, baseline=(None, 0)) evoked.pick_types(meg=True, eeg=False).crop(0.05, 0.15) # this risks aliasing, but these data are very smooth evoked.decimate(10, verbose='error')
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Then, we can load the precomputed inverse operator from a file.
fname_inv = meg_path / 'sample_audvis-meg-vol-7-meg-inv.fif' inv = read_inverse_operator(fname_inv) src = inv['src'] mri_head_t = inv['mri_head_t']
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
The source estimate is computed using the inverse operator and the sensor-space data.
snr = 3.0 lambda2 = 1.0 / snr ** 2 method = "dSPM" # use dSPM method (could also be MNE or sLORETA) stc = apply_inverse(evoked, inv, lambda2, method) del inv
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
This time, we have a different container (:class:VolSourceEstimate <mne.VolSourceEstimate>) for the source time course.
print(stc)
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
This too comes with a convenient plot method.
stc.plot(src, subject='sample', subjects_dir=subjects_dir)
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
For this visualization, nilearn must be installed. This visualization is interactive. Click on any of the anatomical slices to explore the time series. Clicking on any time point will bring up the corresponding anatomical map. We could visualize the source estimate on a glass brain. Unlike the previous visualization, a...
stc.plot(src, subject='sample', subjects_dir=subjects_dir, mode='glass_brain')
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
You can also extract label time courses using volumetric atlases. Here we'll use the built-in aparc+aseg.mgz:
fname_aseg = op.join(subjects_dir, 'sample', 'mri', 'aparc+aseg.mgz') label_names = mne.get_volume_labels_from_aseg(fname_aseg) label_tc = stc.extract_label_time_course(fname_aseg, src=src) lidx, tidx = np.unravel_index(np.argmax(label_tc), label_tc.shape) fig, ax = plt.subplots(1) ax.plot(stc.times, label_tc.T, 'k', ...
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
We can plot several labels with the most activation in their time course for a more fine-grained view of the anatomical loci of activation.
labels = [label_names[idx] for idx in np.argsort(label_tc.max(axis=1))[:7] if 'unknown' not in label_names[idx].lower()] # remove catch-all brain = mne.viz.Brain('sample', hemi='both', surf='pial', alpha=0.5, cortex='low_contrast', subjects_dir=subjects_dir) brain.add_volume_labels(aseg...
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
And we can project these label time courses back to their original locations and see how the plot has been smoothed:
stc_back = mne.labels_to_stc(fname_aseg, label_tc, src=src) stc_back.plot(src, subjects_dir=subjects_dir, mode='glass_brain')
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Vector Source Estimates If we choose to use pick_ori='vector' in :func:apply_inverse <mne.minimum_norm.apply_inverse>
fname_inv = op.join(data_path, 'MEG', 'sample', 'sample_audvis-meg-oct-6-meg-inv.fif') inv = read_inverse_operator(fname_inv) stc = apply_inverse(evoked, inv, lambda2, 'dSPM', pick_ori='vector') brain = stc.plot(subject='sample', subjects_dir=subjects_dir, initial_time=initial_time,...
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Dipole fits For computing a dipole fit, we need to load the noise covariance, the BEM solution, and the coregistration transformation files. Note that for the other methods, these were already used to generate the inverse operator.
fname_cov = meg_path / 'sample_audvis-cov.fif' fname_bem = subjects_dir / 'sample' / 'bem' / 'sample-5120-bem-sol.fif' fname_trans = meg_path / 'sample_audvis_raw-trans.fif'
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Dipoles are fit independently for each time point, so let us crop our time series to visualize the dipole fit for the time point of interest.
evoked.crop(0.1, 0.1) dip = mne.fit_dipole(evoked, fname_cov, fname_bem, fname_trans)[0]
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
Finally, we can visualize the dipole.
dip.plot_locations(fname_trans, 'sample', subjects_dir)
dev/_downloads/ab20eadd8e6e3c70dc4dd75cfef6ca4c/60_visualize_stc.ipynb
mne-tools/mne-tools.github.io
bsd-3-clause
<a name="top"></a> Table of Contents Introduction to Git and Python Overview of Git Overview of Python Getting Started with Git The Flying Circus (Getting Started with Python) Statements Python Futures Hello World Your Second Statement Functions and Debugging Input/Output Input Raw Plain Text JSON ROOT and HDF5 Outp...
print ("Hello World!")
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
What just happened? A string defined in python "Hello World!" is printed out to STDOUT - your console, this Jupyter notebook, along with an automatically added newline character.
type("Hello World!") timon = "Hakuna Matata!" print (timon) print ("What a wonderful phrase...") print (timon) print ("It ain't no passing craze...") print ("It means no worries...", "for the rest of your days")
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
and so clearly, you can already start understand how easy it is to print anything that has a representation. Variables can be printed, functions and classes can also be printed. But what if you wanted to print something on the same line? You can use print foo, bar of course, but what about using two print statements? I...
print (timon) print ("What a wonderful phrase...") print (timon,end='') print ("It ain't no passing craze...",end='') print ("It means no worries...", "for the rest of your days")
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="import-statement"></a> [top] Your Second Statement To being the process of python coding, you should get introduced to your second statement: import. This allows you to import modules and packages into the scope of your code and interface with other peoples sweat and tears. Let's start with the classic easter ...
import antigravity
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Now, it's time for your first exercise. Try importing a module called this
# go ahead and import it!
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
When you import a module, the name of that module goes into scope and its API is accessible under the same name. If the above two modules actually imported anything, you would be able to access it via antigravity.something or this.that. As a concrete example, let's import the types library and see what sorts of things ...
import types dir(types) types.CellType
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
This means that I can do something like from types import BooleanType to only extract a specific variable, class, or function instead! I can even rename it during import if I have name-conflicts:
import types as MyTypes from types import CellType as AnotherBooleanType
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="hello-world-future"></a> [top] Functions and Debugging In Python, functions are defined
# define a function named "what_does_the_fox_say" def what_does_the_fox_say(): print ("Ring-ding-ding-ding-dingeringeding")
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
and then executed
what_does_the_fox_say()
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
and we get all sorts of remarkable properties on these functions, which you can view by running the dir command
dir(what_does_the_fox_say)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
such as maybe printing out the name of the function
what_does_the_fox_say.__name__
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
which seems a little redundant right now. But imagine you alias a function to another variable, but you want to do something based on the name of the function...
# assign another variable that points to the function wdtfs = what_does_the_fox_say # execute the function wdtfs() # what is the name of the function? wdtfs.__name__
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
As you can see, functions are objects in Python, otherwise known as first class citizens: - passed around and manipulated similarly to integers and strings - assign a function to a variable - pass a function as an argument to another function, etc... Notice how the function in Python has two parentheses wrapping the ar...
# try it out: print(....) with a single string or a single variable of your choice!
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
But this isn't quite right! In fact, the parentheses here, as we'll talking about, defines a tuple. This is somewhat deceiving but check it out:
print(timon,timon)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
so it seems to be printing out two strings in a tuple format... Is (timon, timon) a tuple?
type( (timon,timon) )
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
It appears to be! But how would I know if something is a function or not? Use the type class!
type(what_does_the_fox_say) type(print)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
My personal opinion is that this sort of thing can start to get confusing having a very special statement in Python. For the rest of the notebook, we'll replace the print statement with the print function instead, which is a lot more powerful as we shall soon see. Let's try and fix the error we've seen:
# go ahead and import print_function from the __future__ module type(print)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<img src="https://upload.wikimedia.org/wikipedia/commons/9/92/CPT_Hardware-InputOutput.svg" width="250" alt="input-output diagram" /> <a name="input-output"></a> [top] Input/Output In this section, I hope to highlight some of the different ways that you should be able to input data into your python scripts, as well as ...
name = input("What is your name?") print("Greetings", name)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
This is the most dangerous form as you will need to santize and validate the user input. Imagine that the person typing input to your script is a chimpanzee and you need to program your script to allow them to use it without breaking it. Try running the above code with anything, or just press enter and type nothing in!...
# start with nothing total = 0 # loop infinitely while True: number = input("Gimme a number or press enter to continue: ") if number.isdigit(): # as long as we're given something that # looks like a number... add it. total += int(number) else: # break the loop break ...
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="input-plain"></a> [top] Plain Text Next up on input is dealing with plain text files. I would like to focus a little bit on the different ways you can read a text file. In the data directory are three files we will look at in this section. I will provide an explanation of how you might read them, and leave ano...
! ls -lavh plain_data/*
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
The first file is animals which is a (non-exhaustive) list of animals, one animal per line. We would like to read this file into a Python list. Don't worry about what a Python list is (if you're unfamiliar) but it is like an array. The goal here is just to load the data file in. I will demonstrate some different ways t...
# r means open this file in read-only mode fh = open("plain_data/animals", "r") print(fh, type(fh)) # do something in between # always make sure to close the file when you are done with it fh.close() print(fh, type(fh))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
If you keep re-running the above code, notice that the file pointer changes. You really are opening this file, and then closing it. Obviously, we would like to read the contents of the file. There's a really handy intuitive method called read() that lets us do that! To read a file’s contents, call f.read(size), which r...
# r means open this file in read-only mode fh = open("plain_data/animals", "r") print(fh, type(fh)) # read the first 128 bytes from the file # leave this blank (fh.read()) to read it all # but there are a lot of animals, so let's not read it all data = fh.read(128) print(data, "\n") print(repr(data)) print("Data...
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Notice that Python's print function will print the newline characters \n by default. You can force it not to do this by wrapping the text in repr() which prints the representation of the text. This is a single string object. That's not entirely useful for our purposes, is it? We want to read this file, line by line. Pe...
# r means open this file in read-only mode fh = open("plain_data/animals", "r") print(fh, type(fh)) data = fh.readline() print(repr(data)) data = fh.readline() print(repr(data)) # always make sure to close the file when you are done with it fh.close() print(fh, type(fh))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
and so now, we can read this file, line by line. But maybe you want all the lines. There's also a nifty readlines() command:
# r means open this file in read-only mode fh = open("plain_data/animals", "r") print(fh, type(fh)) data = fh.readlines() # let's not print out all the animals print("There are", len(data), "animals in the file.") # always make sure to close the file when you are done with it fh.close() print(fh, type(fh))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Another, somewhat less undocumented way, is to use list() to cast the file pointer into a list object. In Python, this is a special case that automatically gives you a list.
# r means open this file in read-only mode fh = open("plain_data/animals", "r") print(fh, type(fh)) data = list(fh) # let's not print out all the animals print("There are", len(data), "animals in the file.") # always make sure to close the file when you are done with it fh.close() print(fh, type(fh))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Just beware that each element in this list will contain that pesky newline character at the end which is great for printing it to the screen... but not so much when you're trying to do data analysis. The strip() commands (also lstrip() and rstrip()) on str objects will remove the specified characters from the beginning...
print("left", " outer space ", "right") print("left", " outer space ".strip(), "right")
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Feel free to go back over some of the above examples and try using line.strip() instead! When reading plain text files, strip() and repr() are your friends. As you can imagine so far, it can start getting annoying to constanly remember to close the file when you're done. In fact, there's a statement for it! The with st...
with open("plain_data/animals", "r") as fh: print(fh, type(fh)) print(fh, type(fh))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
So now, we can use the scope of the with statement to encapsulate the logic we need for reading files in this example. This is incredibly convenient. Let's try to do the same thing with a comma-separated file!
! ls -lavh plain_data/*
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
The other two files here to focus on are comma-separated and tab-separated. These are plain text files as well. Like the animals file we just looked at where there was an animal for each line -- the other files have an entry, or event, or item for each line. The difference is that now, we have a delimiter that encodes ...
! cat plain_data/example.csv
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
As you can see, we want to make sure that the comma inside the quoted string, like "Venture, Extended Edition" isn't considered a delimiter. We will use " as a quote character which is a way to let the csv reader flag when to split on the delimiter and when to not.
import csv with open("plain_data/example.csv") as fh: reader = csv.reader(fh, delimiter=',', quotechar='"') # use next() to get the first line/entry/row/event from the file, which are the headers headers = next(reader) # use the list(fh) trick to just get a list of everything else! data = list(reade...
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
As you can see, it was remarkably easy to extract out a comma-separated file correctly. What you see above is the list representation for the headers -- a list of 4 items. We called the next() on the reader (which acts like a file pointer for us). The data is represented as a list of lists. The important part here is t...
import csv with open("plain_data/example.tsv") as fh: reader = csv.reader(fh, delimiter=',', quotechar='"') # use the tab delimiter: \t # do some stuff here headers = '' data = '' print("Headers:", repr(headers)) print("Data:", repr(data))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="input-json"></a> [top] JSON JSON is one of the most useful plain text formats you can get. Most languages have a JSON parser as you can see from the list at the bottom of this page on JSON.org. It also happens to be a very nice way to provide configuration for any script as well as a way to serialize data to p...
! ls -lavh json_data/* ! cat json_data/example.json
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
As you can see, the JSON data looks perfectly readable. With Python, we just use the JSON library in order to load this up.
import json json.load("json_data/example.json")
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Uh-oh! What happened here? It looks like the python call was expecting a file pointer instead. Let's fix that.
import json data = json.load(open("json_data/example.json")) print(repr(data))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
And that's it! There is really not that much more to do here. You've just loaded in a file containing JSON data and you can now do things with it. <a name="input-root-hdf5"></a> [top] ROOT and HDF5 As you probably can already guess - JSON is not the best format when it comes to storing a lot of raw data in very complic...
import ROOT
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
ROOT has a python library known as PyROOT which we will take advantage of. There is also a NumPy wrapper around PyROOT which is known as root_numpy which contains some test data for the purposes of demonstrating that we can read in a ROOT file.
import ROOT from root_numpy import testdata print(testdata.get_filepath('single1.root')) # open for reading f = ROOT.TFile.Open(testdata.get_filepath('single1.root')) print(f, type(f)) # close the file pointer f.Close() print(f, type(f))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Like we've seen with open() before, PyROOT will create the file pointer from you given a filename. You do not need to pass in a file object. In this case, ROOT.TFile.Open() replaces open() when we need to open a file pointer for ROOT files. With HDF5, there is a similar pattern. When you start looking into the machine ...
from __future__ import print_function with open('hello_world.log', 'w') as fh: print (>>fh, "Hello World!") # rewrite this line
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
The other thing you could do is to have STDOUT point to a file instead. Then all print statements get redirected for you. How do you access your system's information about which file the kernel writes into? Why, using the python sys library!
import sys # let's just show we can write to the notebook as usual print(sys.stdout) # hold on to the regular stdout temp_stdout = sys.stdout # now redirect to a file sys.stdout = open("stdout.log", "w") print(sys.stdout) # now redirect back sys.stdout.close() sys.stdout = temp_stdout # this should print again to the ...
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
and we can see that running the above will make a stdout.log file containing
! cat stdout.log
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
So this is pretty neat. This should give you an idea of how you have some control over being able to stream output on your system. You can start to do more complicated things such as redirecting output to multiple files based on what function is being called or something more clever. To learn more about some advanced f...
! rm hello_world.log stdout.log
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="output-plain"></a> [top] Plain Text We've just seen how you can redirect print output to a file in two different ways: - redirect individual print statements/functions on a case-by-case basis - globally redirect all print calls by changing where sys.stdout points to To write output directly to a file using a f...
name = input("What is your name? ") with open('plain_output.log', 'w') as fh: # rewrite these lines to use fh.write(....) instead print("Hello ", file=fh, end='') #no newline print(name, file=fh) #newline print("How are you today?", file=fh) #newline
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
I would like you to play around with the fh.write() by adding multiple lines in, and try to understand how this works. This above example combines a few pieces of what you've learned previously using raw_input as well as how to suppress a newline with a print call. You can check your work by running
! cat plain_output.log
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
When you're satisfied that you understand plain text printing, go ahead and clean up the file you made
! rm plain_output.log
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="output-json"></a> [top] JSON JSON is a very nice way to serialize many python objects into a plain text format that can be re-imported at a later time. It's as simple as loading the JSON library and calling the dumps() method to see the JSON representation, or calling the dump(data, fh) method to write to a fi...
import csv, json with open("plain_data/example.csv") as fh: reader = csv.reader(fh, delimiter=',', quotechar='"') # use next() to get the first line/entry/row/event from the file, which are the headers headers = next(reader) # use the list(fh) trick to just get a list of everything else! data = list...
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
When all is said and done, you should verify that you wrote to the file correctly
! cat example.json
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Compare this to plain_data/example.csv to get an idea of how the two representations are a bit different, but both are still plain text!
! cat plain_data/example.csv
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
and then clean up and remove the JSON file you just made.
! rm example.json
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="iterables"></a> [top] Iterating Iterables In this section, I will introduce you to the next powerful concept of Python which are iterables. An iterable, as its name implies, is something you can iterate over in some sort of a loop: for, do/while, and so on. From the python glossary, an iterable is: - a sequenc...
# a list of stuff a_list = [1,2,'three',2*2,"five","6", [1,2,3]] print(type(a_list), a_list) # sets contain unique objects a_set = {1,'two',3,3,1,1,1,1,1,1} print(type(a_set), a_set) # dictionaries are key-value stores a_dict = {"name": "Giordon Stark", "age": 27, "favorite_number": 3.1415926, ("dead","alive"): False...
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Iterating over these objects [top] So let's show you how to iterate over each of these types of objects. <a name="iterables-list"></a> [top] List
for item in a_list: print(type(item), item, repr(item))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="iterables-set"></a> [top] Set
for item in a_set: print(type(item), item, repr(item))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="iterables-dict"></a> [top] Dictionary
for k, v in a_dict.items(): print(type(k), k, type(v), v)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
but as you've noticed, dictionaries are a little special since they contain key/value pairs. How do you print the value of the dictionary? You can iterate over the keys of a dictionary and then access the values from a dictionary using either it's __getitem__() method with [] accessor, or using dict::get() which also a...
a_dict.items() for item in a_dict: print(type(item), item, a_dict[item]) for item in a_dict: print(type(item), item, a_dict.get(item)) print(a_dict.get('FakeKey')) print(a_dict.get('FakeKey', 'DefaultValue'))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="iterables-tuple"></a> [top] Tuple
for item in a_tuple: print(type(item), item, repr(item))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="iterables-str"></a> [top] String
for item in a_string: print(type(item), item, repr(item))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="iterables-file"></a> [top] Files
""" Remember that below code is equivalent to: a_file = open("plain_data/example.tsv") for item in a_file: print(type(item), item, repr(item)) a_file.close() """ with open("plain_data/example.tsv") as f: for item in f: print(type(item), repr(item))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Notice that with iterating over a file pointer is like iterating over the readlines method we've seen previously in this tutorial. <a name="iterables-numpy"></a> [top] NumPy Array
import numpy as np arr = np.array([1,2,3,4,5,6,7,8,9]) print(type(arr), repr(arr)) for item in arr: print(type(item), repr(item))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
NumPy arrays are often just called ndarray which means "n-dimensional array". In fact, these arrays can have arbitrary dimension and are used heavily with data science in Python. In the next tutorial, I'll show some interesting features of NumPy arrays so that you can be more familiar with how to handle them. <a name="...
print(range(10)) print(range(2,9)) print(range(2,9,3)) print(3 in range(10)) print(3 in range(2,9)) print(3 in range(2,9,3)) range(3)+range(11,20,2) range(3)*3 print(range(10)[2]) print(range(10)[2:6]) print(range(10)[2:6:3]) print(len(range(10))) print(min(range(10))) print(max(range(10))) range(10).index(2) im...
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="comprehensions"></a> [top] Comprehensions Comprehensions are one of the most amazing things about Python. What better way then to show off some of the power?
[i for i in range(10)]
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
How do you read this? "Make a list of i, for i in range(10) and return it to me". Why is this powerful? If you think about it, you could replace map() with list comprehension! Let's use that last example of map() and rewrite it using list comprehension.
import math map(math.sqrt, range(10)) #rewrite me!!!
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
You can even combine multiple loops, such as generating all possible combinations of two different lists. Let's take an example of combining a letter from my first name with a letter from my last name and generating all possible unique combinations:
result = [] for first in "giordon": for last in "stark": result.append(first+last) set(result)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
How can we make this shorter, and perhaps more clearer, with comprehensions?
set([first+last for last in "stark" for first in "giordon"])
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
<a name="slice-filter"></a> [top] Slicing and Filtering Slicing and filtering are the two cornerstones of data analysis. You need to constantly be able to clean/sanitize your data, as well as slice it based on conditions. For now, let's discuss how we slice/filter vanilla Python sequences. In the next tutorial focusing...
reverse_me = range(10) reverse_me.reverse() print(reverse_me)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Can you think of a way to reverse this list using slicing? As a reminder, here's an excerpt from the table above: | Operation | Result | |:--------------|:-----------| | s[i:j:k] | slice of s from i to j with step k |
# rewrite me into one line! reverse_me = range(10) reverse_me.reverse() print(reverse_me)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Why do I care about this? The problem is that the reverse() function only exists on lists, but not all sequences. So you might want to do "giordon".reverse() only to find out that string objects do not have this method! That's unfortunate. Once you've figured out the above exercise, try it with a string to see if your ...
# rewrite me using your solution! ''.join(reversed("giordon"))
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
Filtering becomes much easier in Python once you realize you can take advantage of comprehensions. Let's look at the example we had from above for combining the letters from my first and last names. Let's say I only wanted to include combinations that had at least one vowel - how would I do this? python set([first+last...
set([first+last for last in "stark" for first in "giordon" if first in "aeiou" or last in "aeiou"])
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
and again, in English, you would say "give me first plus last for last in 'stark', for first in 'giordon', only if first is in 'aeiou' or last is in 'aeiou'". <a name="zip"></a> [top] Zipping The very last thing (I promise) for this tutorial is to talk about the zip() function. This function allows you to iterate over ...
for first,middle,last in zip("giordon","holtsberg","stark"): print(first,middle,last)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0
You can think of this as a way to transpose a series of lists, but it will only iterate as far as the shortest list can go. In the above case, the shortest list was "stark" with a length of 5. You can try adding spaces to get something that might look aesthetically better:
for first,middle,last in zip(" giordon ","holtsberg"," stark "): print(first,middle,last)
tutorial/jupyter python numpy plotting/2_Hands-on_Learning.ipynb
ivukotic/ML_platform_tests
gpl-3.0