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 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") |
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
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 |
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.
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
\meta | |
\title Производные и градиенты | |
\author Илья Щуров | |
\affiliation НИУ ВШЭ | |
\project | |
Машинное обучение для факультета экономики, 2017-18 учебный год | |
\url http://wiki.cs.hse.ru/Машинное_обучение_(факультет_экономических_наук) | |
\lang ru | |
В машинном обучении часто приходится находить производные и градиенты от |
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
municipal_district | voting_district | polling_station | |
---|---|---|---|
Академический | 3 | 2118 | |
Академический | 1 | 2119 | |
Академический | 1 | 2120 | |
Академический | 1 | 2121 | |
Академический | 1 | 2122 | |
Академический | 1 | 2123 | |
Академический | 1 | 2124 | |
Академический | 1 | 2125 | |
Академический | 2 | 2126 |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Hello, World</title> | |
</head> | |
<body> | |
<p>Hello, <span id="username"></span></p> | |
<script> | |
var user = JSON.parse('{{ user | tojson | safe}}'); |