From a13c5145e68fa4018f823cbf8afa53e66c845b25 Mon Sep 17 00:00:00 2001 From: nothing Date: Thu, 28 Sep 2023 22:02:48 +0300 Subject: [PATCH 1/4] basic courses --- docs/README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 docs/README.md diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..618dd90 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,30 @@ +# Docs from all training material +All material - free. + +## Programmer (Python) + +### [Programming in Python](https://stepik.org/course/67/info) - Stepik | RU + +Basic knowledge and practics + +### [Programmin in Python Part 2](https://stepik.org/course/512/promo?auth=login) - Stepik | RU + +Continuation of the first course. Deep learning Python + +### Python Statistic + +## Statistic + +### [Basic in statistic](https://stepik.org/course/76/promo) - Stepik | Ru + +Approaches to describing data obtained in research, basic methods and principles of statistical analysis, interpretation and visualization of the results obtained. Students will become familiar with statistical analysis methods such as variance, regression and cluster analysis. We will learn how to compare groups with each other, calculate correlation coefficients and build regression equations. + +The main emphasis is on mathematical ideas, intuition and logic, which determine the methods and calculation formulas. The material studied will be applicable to solving a wide range of problems arising within the framework of research work in almost any direction. + +### [Basic in statistic #2](https://stepik.org/course/524/promo) - Stepik | RU + +This course will examine data analysis methods that are most often used in statistical processing of results in a wide range of scientific and applied fields. In addition to theoretical tasks, students will be exposed to practical tasks that must be performed using the R programming language. The knowledge gained as a result of completing this course will be enough to learn how to more quickly and efficiently solve various problems related to data analysis. + +### [Basic in statistic #3](https://stepik.org/course/2152/promo) - Stepik | RU + +In this course, we complete an introduction to the most common data analysis techniques. We will take a closer look at the methods of regression analysis, paying special attention to methods for diagnosing regression models. Let's get acquainted with such advanced methods as mixed regression models, learn what bootstrap is and how to use it to test hypotheses. In addition to theoretical tasks, students will be exposed to practical tasks that must be performed using the R programming language. This course will be useful for both students from academic and applied fields. \ No newline at end of file -- 2.45.2 From 0f5432e74ca0182f9f2c27d3712f9fc2d8b28a4f Mon Sep 17 00:00:00 2001 From: nothing Date: Thu, 28 Sep 2023 22:09:32 +0300 Subject: [PATCH 2/4] first programm and docs --- practica/math/README.md | 3 +++ practica/math/overpaymant.py | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 practica/math/README.md create mode 100644 practica/math/overpaymant.py diff --git a/practica/math/README.md b/practica/math/README.md new file mode 100644 index 0000000..72dcf1a --- /dev/null +++ b/practica/math/README.md @@ -0,0 +1,3 @@ +# Math Programms + +[Overmaymant.py](overmaymant.py) - calculate loan overpaymant. \ No newline at end of file diff --git a/practica/math/overpaymant.py b/practica/math/overpaymant.py new file mode 100644 index 0000000..b710e3e --- /dev/null +++ b/practica/math/overpaymant.py @@ -0,0 +1,11 @@ +perv_vznos = input (" Введите сумму первоначального взноса " ) +vznos = int(perv_vznos) +a = input (" Введите значение желаемой суммы кредита " ) +b = input (" Введите процентную ставку по кредиту ") +c = input (" Введите кол-во лет по кредиту ") +a1 = int(a) +b1 = float(b) +c1 = int(c) +final_sum = (a1 - vznos) + ((a1 - vznos) / 100 * b1) * c1 +print("Переплата составляет:") +print(final_sum) \ No newline at end of file -- 2.45.2 From fe14dff3e3bcecd7fef3610d9e8997fe86a287b1 Mon Sep 17 00:00:00 2001 From: nothing Date: Thu, 28 Sep 2023 22:10:01 +0300 Subject: [PATCH 3/4] first programm and docs --- drugoe/hello world.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/drugoe/hello world.py b/drugoe/hello world.py index 0c899c8..0181021 100644 --- a/drugoe/hello world.py +++ b/drugoe/hello world.py @@ -5,16 +5,6 @@ # # final_sum = credit + credit / 100 * pr * year # # print(final_sum) -# perv_vznos = input (" Введите сумму первоначального взноса " ) -# vznos = int(perv_vznos) -# a = input (" Введите значение желаемой суммы кредита " ) -# b = input (" Введите процентную ставку по кредиту ") -# c = input (" Введите кол-во лет по кредиту ") -# a1 = int(a) -# b1 = float(b) -# c1 = int(c) -# final_sum = (a1 - vznos) + ((a1 - vznos) / 100 * b1) * c1 -# print(final_sum) # a= 1**322 # b= 321**322 -- 2.45.2 From 98d2d2c475912a3e732ac505a71ff172e0215f6c Mon Sep 17 00:00:00 2001 From: nothing Date: Thu, 28 Sep 2023 22:11:58 +0300 Subject: [PATCH 4/4] small fi --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 645a4fc..a9a3c32 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,17 @@ # this repo for my tasks -## my comment \ No newline at end of file +This repository create from Python problems in math (higer mathematic) and statictic. + +## What and Where +- ```Practica``` - directory, where saves small programs for easy tasks. One file - one small task. + - [math](practica/math/) (for math tasks) + - [statistic](practica/statistic/) (for statisti tasks) + +## Who maintainer + +```Yesen``` - alesa.tomer@mail.ru + + +## Where u learn this? +Read [this](docs/README.md). + +## Can I use ur programs for me? \ No newline at end of file -- 2.45.2