분류 전체보기(7)
-
pandas 기초2
기본 import numpy as np import pandas as pd 조건 검색 -masking & query 방법 1. dataFrame 있으면 단순히 dataFrame 변수명에 조건문 넣듯이 사용 가능 df = pd.DataFrame(np.random.rand(3, 2), columns=["A", "B"]) df[“A”] false, true 형식 말고 차트로 나옴 df.query("A 0.3") 결과 : 함수 사용 -apply() df["column_name"].apply(func) groupby df.groupby('column_name') pivot_table ..
2020.10.20 -
pandas 기본
import pandas as pd Series 배열이자 파이썬의 dictionary 같은 부분 : 배열식인데 index 있음. data = pd.Series([1,2,3,4] , index = ['a', 'b', 'c', 'd']) a : 1 b : 2 c : 3 d : 4 딕셔너리로 series 만들 수 있음! dict = { 'seoul' : 4325, 'sejong' : 6542, } ser = pd.Series(dict) key => index value => data DataFrame : 여러 개의 Series dataframe = pd.DataFrame({ 'values1':values,#values = pd.Series({'seoul': 2, 'sejong' : 4}) 'values2' :..
2020.10.13 -
numpy 이용해 간단한 연산
기본 설정 = 라이브러리 호출 import numpy as np 배열 생성 arr = np.arange(6) #[0,1,2,3,4,5] matrix 만들기 arr = np.array(6) arr2 = arr.reshape((2,3)) #[[0,1,2] #[3,4,5]] 이어 붙이기 matrix = np.array([[0,1,2,3], [4,5,6,7]]) m=np.concatenate([matrix,matrix],axis=0) ''' [[0 1 2 3] [4 5 6 7] [0 1 2 3] [4 5 6 7]] ''' 브로드캐스팅 연산 (행렬에선 계산할 떄 사이즈 맞아야되는데 얘는 ''' A = np.arange(6).reshape(3,2) B = np.arange(3).reshape(3,1) A+B '''..
2020.10.13 -
react-slick 이용하기
react-slick.neostack.com/docs/get-started/ Neostack The last react carousel you will ever need react-slick.neostack.com 좌우로 슬라이드 하는 페이지를 구현하고 싶어서 찾아보다가 디자이너분께 받은 작업물이 가운데 요소를 강조하는 형태라 centerMode가 있는 react-slick을 이용하게 되었다. 근데 뭐가 뭐가 문젠건지 1번째를 원했는데 2번째처럼 떴다. 기존에 있던 css들과 충돌이 난건지 뭔지 도저히 모르겠음.. 버튼은 화면 사이즈에 밀려서 밖으로 나간거라 사이즈 조정하니까 나오던데 centerMode도 안되고 억지로 .slick-slide{} 찾아서 css로 margin 줘서 카드형으로 만듦 라이브러..
2020.10.04 -
ant-design icon, button 사용
ant.design/components/icon/#components-icon-demo-iconfont Icon - Ant Design Import icons from @ant-design/icons, component name of icons with different theme is the icon name suffixed by the theme name. Specific the spin property to show spinning animation. ant.design 위 주소가 ant design 공식 주소인듯?! 1. 패키지 설치 나와있는대로 터미널에서 다운을 받아줌 npm install --save @ant-design/icons 2. icon icon 사용은 매우 간단. 내가 사용하고 싶은..
2020.09.24 -
css 배경색 없어짐, element 들이 layout 밖으로 나감
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; 코드를 작성하니 요소가 사라지는 매직~ 다른 블로그들 찾아보니 아래와 같이 작성하면 된대서 했더니 background-color가 없어지는 매직~ display: inline-flex; flex-direction: column; align-items: flex-end; 다시 이것저것 해보기.. 기존 코드 .component .first-component { position: relative; display: inline-block; background-color: rgb(107, 192, 111); } 수정 코드 .first-component { pos..
2020.09.23