This file contains 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
Ruby | |
What is a class? - Каркас для объектов, содержит данные, методы, инстансы. | |
What is the difference between a class and a module? - Модуль - пространство имен, не может иметь экземпляров. | |
What is an object? - Экземпляр класса. | |
How would you declare and use a constructor in Ruby? | |
def initialize(some, data) | |
p "Initializer #{some} #{data}" | |
end |
This file contains 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
1. принципиальное различие скриптовых и “обычных” языков | |
Скриптовый язык программирования — язык программирования, разработанный для записи «сценариев», | |
последовательностей операций, которые пользователь может выполнять на компьютере. | |
Интерпертируется с помощью интерпретатора. Имеет динамическую типизацию. | |
Интерпретация — пооператорный (покомандный, построчный) анализ, обработка и тут же выполнение исходной программы | |
или запроса (в отличие от компиляции, при которой программа транслируется без её выполнения)[2][3][4]. | |
2.Duck Typing |
This file contains 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
print(__doc__) | |
import matplotlib.pyplot as plt | |
import csv | |
from sklearn.decomposition import PCA | |
from sklearn.discriminant_analysis import LinearDiscriminantAnalysis | |
def pca_ol(filename): |
This file contains 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
print(__doc__) | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from mpl_toolkits.mplot3d import Axes3D | |
import csv | |
from sklearn.cluster import KMeans | |
from sklearn import datasets |