Compare commits

...

4 Commits

Author SHA1 Message Date
98d2d2c475 small fi 2023-09-28 22:11:58 +03:00
fe14dff3e3 first programm and docs 2023-09-28 22:10:01 +03:00
0f5432e74c first programm and docs 2023-09-28 22:09:32 +03:00
a13c5145e6 basic courses 2023-09-28 22:02:48 +03:00
5 changed files with 60 additions and 11 deletions

View File

@ -1,2 +1,17 @@
# this repo for my tasks
## my comment
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?

30
docs/README.md Normal file
View File

@ -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.

View File

@ -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

3
practica/math/README.md Normal file
View File

@ -0,0 +1,3 @@
# Math Programms
[Overmaymant.py](overmaymant.py) - calculate loan overpaymant.

View File

@ -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)