Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Default X points
- For loops
- start exercise
- PANDAS
- train/test
- error
- PROJECT
- self parameter
- line color
- continue
- Github
- machine learning
- matplotlib
- __init__
- AS
- SQL
- break
- Text Analytics
- pie charts
- Else
- Text mining
- variables
- matplotlib.pyplot
- data distribution
- iterates
- multiple lines
- MySQL
- Python
- line width
- polynomial regression
Archives
- Today
- Total
목록math (1)
Data Science Explorer

Built-In Math Functions The min() and max() functions can be used to find the lowest or highest value. Example x = min (3,10, 1) y = max (3,10, 1) print(x) print(y) The abs() function returns the absolute (positive value) of the specified number. Example x = abs(-8.25) print(x) The pow(x,y) function returns the value of x to the power of y. Example Return the value of 4 to the power of 2. x = po..
Python
2023. 11. 24. 09:02