Skip to content
#

standardization

Here are 111 public repositories matching this topic...

ideas
pavelkryukov
pavelkryukov commented Jan 29, 2022

C-массив можно инициализировать литералом или списком:

const char array1[] = "abcdefgh";
const char array2[8] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'};

Конструктор std::string_view неявно преобразует ссылку на C-массив в const char*.
Для array1 вызовется strlen (использовать N не будем, т.к. внутри литерала может быть \0).
array2 же не нуль-терминирован, и вызов

good first issue

Understand the relationships between various features in relation with the sale price of a house using exploratory data analysis and statistical analysis. Applied ML algorithms such as Multiple Linear Regression, Ridge Regression and Lasso Regression in combination with cross validation. Performed parameter tuning, compared the test scores and suggested a best model to predict the final sale price of a house. Seaborn is used to plot graphs and scikit learn package is used for statistical analysis.

  • Updated Jan 19, 2018
  • Jupyter Notebook

Improve this page

Add a description, image, and links to the standardization topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the standardization topic, visit your repo's landing page and select "manage topics."

Learn more