Skip to content

Instantly share code, notes, and snippets.

View ischurov's full-sized avatar

Ilya V. Schurov ischurov

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / Untitled3.ipynb
Created March 2, 2018 14:18
ICEF Python 2018 Lecture 3
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / Untitled.ipynb
Created February 21, 2018 21:21
Python ICEF 2018, Lecture 1
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / Untitled2.ipynb
Created February 21, 2018 21:16
Lecture 2 Python ICEF 2018
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / Constant Velocity-Copy1.ipynb
Last active February 10, 2018 20:24
Constant Velocity-Copy1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_csv("yourdata.csv")
plt.plot(df['x'], df['y'], lw=0.5, color='black')
plt.savefig("file.svg")
3 + 2
3 * (2 + 3) + sqrt(4)
3 + 4
print(2 + 3)
print(3 * (4 + 1))
x <- 5
y <- 10
x
x + y
x <- x + 1
@ischurov
ischurov / Untitled1.ipynb
Created October 22, 2017 14:15
python data day 3
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / Untitled.ipynb
Last active October 21, 2017 11:59
web scrapping day 2.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / hw python.ipynb
Created October 8, 2017 08:47
hw python numpy
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.