| ALA | ARG | ASN | ASP | CYS | GLN | GLU | HIS | ILE | LEU | LYS | MET | PHE | PRO | SER | THR | TRP | TYR | VAL | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ALA | -0.34 | 0.08 | 0.04 | 0.15 | -0.13 | 0.01 | 0.03 | 0.12 | -0.2 | -0.2 | 0.02 | -0.18 | -0.16 | -0.01 | 0.03 | -0.02 | 0.03 | -0.02 | -0.2 |
| ARG | 0.08 | 0.08 | -0.08 | -0.74 | 0.26 | -0.2 | -0.78 | 0.08 | 0.23 | 0.14 | 0.3 | 0.17 | 0.15 | -0.1 | -0.08 | -0.03 | -0.11 | 0.01 | 0.26 |
| ASN | 0.04 | -0.08 | -0.54 | -0.47 | 0.12 | -0.32 | -0.26 | -0.08 | 0.42 | 0.34 | -0.25 | 0.23 | 0.14 | -0.1 | -0.32 | -0.24 | -0.01 | 0 | 0.25 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #!/usr/bin/env python | |
| from scipy.integrate import * | |
| from scipy.interpolate import interp1d | |
| from math import pi, exp, sqrt,erf | |
| import numpy as np | |
| grtypes = ["gromacs", "lammps", "aimd"] | |
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
| [ | |
| { | |
| "home": "GLA", | |
| "away": "FLA", | |
| "scores": [ | |
| [ | |
| 2, | |
| 1 | |
| ], | |
| [ |
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
| import matplotlib.pyplot as plt | |
| import matplotlib | |
| import numpy as np | |
| import moviepy | |
| from moviepy.editor import VideoClip | |
| from moviepy.video.io.bindings import mplfig_to_npimage | |
| x = np.linspace(-5,5,100) | |
| fig, ax = plt.subplots(figsize=(12,8)) | |
| line = ax.plot(x, x**2 + np.cos(5 * x))[0] |
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
| proc take_picture {args} { | |
| global take_picture | |
| # when called with no parameter, render the image | |
| if {$args == {}} { | |
| set f [format $take_picture(format) $take_picture(frame)] | |
| # take 1 out of every modulo images | |
| if { [expr $take_picture(frame) % $take_picture(modulo)] == 0 } { | |
| render $take_picture(method) $f | |
| # call any unix command, if specified |
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
| proc take_picture {args} { | |
| global take_picture | |
| # when called with no parameter, render the image | |
| if {$args == {}} { | |
| set f [format $take_picture(format) $take_picture(frame)] | |
| # take 1 out of every modulo images | |
| if { [expr $take_picture(frame) % $take_picture(modulo)] == 0 } { | |
| render $take_picture(method) $f | |
| # call any unix command, if specified |
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
| import numpy as np | |
| import matplotlib as mpl | |
| import matplotlib.pyplot as plt | |
| import seaborn as sns | |
| sns.set_context('talk') | |
| sns.set_style('darkgrid') | |
| ps = [0.001, 0.005, 0.01, 0.02, 0.035] | |
| cities = ['Rural Montana', 'Seattle', 'Minneapolis', 'Chicago', 'Miami'] | |
| cp = sns.cubehelix_palette(len(ps), start=0.5, rot=-0.75) |