본문 바로가기
반응형

분류 전체보기462

[python] json, dict 에서 DataFrame 변환시 All arrays must be of the same length 오류 해결 python json, dict 에서 DataFrame 변환시 All arrays must be of the same length 오류 해결 이에 따른 해결방법으론 해결방법은 pd.DataFrame.from_dict으로 호출을 해서, orient = index를 옵션을 넣어주면 정상적으로 DataFrame 형식을 통해 변환된다. 그리고 마지막으로 df.transpose() 형식을 통해 판다스로 보면은 정상적으로 해결이 된다. 이는 json 이나 dict 파일 형식에서 데이터 프레임으로 pandas 으로 변환시 주로 생기는 오류이다. All arrays must be of the same length 의 오류 해결은 맨 마지막 코드를 보면은 알 수 있다. #json 에서 DataFrame 변환시 All a.. 2022. 10. 1.
[sql] 날짜별 이동평균, 월간 누적매출, 매출 z차트 만들기 날짜별 이동평균, 월간 누적매출 DROP TABLE IF EXISTS purchase_log; CREATE TABLE purchase_log( dt varchar(255) , order_id integer , user_id varchar(255) , purchase_amount integer ); INSERT INTO purchase_log VALUES ('2014-01-01', 1, 'rhwpvvitou', 13900) , ('2014-01-01', 2, 'hqnwoamzic', 10616) , ('2014-01-02', 3, 'tzlmqryunr', 21156) , ('2014-01-02', 4, 'wkmqqwbyai', 14893) , ('2014-01-03', 5, 'ciecbedwbq', 130.. 2022. 9. 26.
[sql] 특정 문자만 추출, 월초, 월말 집계 방법, 스케쥴러 조회 --- mysql 임 select* fromOPENQUERY([KOR_LOGDB], 'SELECT* FROMdbLog.Login WHEREtime >=''2019-02-27 00:00:00'' and time 2022. 9. 26.
[sql] 누적 접속자 쿼리, 최초 구매 누적접속자 selectaa.date ,aa.server ,count(distinct accountid) --dau ,sum(count(x)) over (partition by server order by aa.date) -- 누적 접속자 from ( selectdate ,server ,accountid ,row_number() over(partition by server, accountid order by date asc) as x fromworkdb2.dbo.dau2 with (nolock) where date between '2020-07-01' and '2020-07-02' ) as aa group by aa.date ,aa.server 최초구매 selectaaa.productname, suM(aa.. 2022. 9. 26.
반응형