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 |
Tags
- python
- 리눅스
- ASP
- flutter
- urllib
- PyQt
- GIT
- Linux
- Unity
- pandas
- 함수
- 유니티
- 맛집
- 라즈베리파이
- javascript
- PER
- ubuntu
- sqlite
- tensorflow
- MySQL
- 날짜
- IOS
- 다이어트
- port
- node.js
- swift
- PyQt5
- Excel
- mssql
- MS-SQL
Archives
아미(아름다운미소)
pandas 몫 나머지 본문
import pandas as pd
# 예시 데이터프레임 생성
data = {'수치': [-10, 20, -15, 30, -25]}
df = pd.DataFrame(data)
# 몫과 나머지를 구하는 함수 정의
def calculate_quotient_remainder(x, divisor):
quotient = x // divisor # 몫
remainder = x % divisor # 나머지
if x < 0: # 음수일 경우
return -quotient, -remainder
else: # 양수일 경우
return quotient, remainder
# divisor 설정
divisor = 7
# apply 메서드를 사용하여 몫과 나머지를 계산
df[['몫', '나머지']] = df['수치'].apply(lambda x: calculate_quotient_remainder(x, divisor)).apply(pd.Series)
# 결과 출력
print(df)
import pandas as pd
import numpy as np
# 값 설정
a = -140
b = 26
# 몫과 나머지 계산
quotient = np.floor_divide(a, b)
remainder = np.remainder(a, b)
# 결과 출력
print("몫:", quotient)
print("나머지:", remainder)
'랭귀지 > pandas' 카테고리의 다른 글
pandas df a,b컬럼을 groupby 했을때c컬럼의합이 0인경우 d컬럼의 알파벳이 제일빠른행에 c행을 1로바꾸기 (0) | 2024.08.14 |
---|---|
값채우기 응용 (0) | 2024.08.13 |
b컬럼이 음수면 -1을 해당수만큼넣고 양수면 1을 해당수만큼 넣기 (0) | 2024.08.12 |
pandas df와 df를 groupby sum한 a컬럼을 outer join하면 결과는? (0) | 2024.08.12 |
계산 후 join (0) | 2024.08.12 |
Comments