본문 바로가기

전체 글431

시각화 패키지 Matplotlib 시각화 패키지 Matplotlib Matplotlib는 파이썬에서 자료를 차트(chart)나 플롯(plot)으로 시각화(visulaization)하는 패키지이다. Matplotlib는 다음과 같은 정형화된 차트나 플롯 이외에도 저수준 api를 사용한 다양한 시각화 기능을 제공한다. 라인 플롯(line plot) 스캐터 플롯(scatter plot) 컨투어 플롯(contour plot) 서피스 플롯(surface plot) 바 차트(bar chart) 히스토그램(histogram) 박스 플롯(box plot) Matplotlib를 사용한 시각화 예제들을 보고 싶다면 Matplotlib 갤러리 웹사이트를 방문한다. http://matplotlib.org/gallery.html pylab 서브패키지 Matpl.. 2020. 9. 27.
Mariadb NULL , NOT NULL 전부 선택 select rdate, tot, g1, g1, g3, g4, g5, g6, g7, g8 dtype from `cc_3f_test` NULL 이 아닌것 선택 select rdate, tot, g1, g1, g3, g4, g5, g6, g7, g8 dtype from `cc_3f_test` where tot is not null NULL 인것 선택 select rdate, tot, g1, g1, g3, g4, g5, g6, g7, g8 dtype from `cc_3f_test` where tot is null 2020. 9. 26.
날짜별로 행의 집계값 얻기 SELECT DATE_FORMAT(column, ‘%Y%m%d’) as date, count(*) FROM table GROUP BY DATE_FORMAT(column, ‘%Y%m%d’) ORDER BY date ASC; SELECT DATE_FORMAT(rdate, '%Y%m%d') as date, count(*) FROM `cc_3f_test` GROUP BY DATE_FORMAT(rdate, '%Y%m%d') ORDER BY date ASC; 2020. 9. 26.
앱에서 WiFi 연결 다음 WifiConfiguration과 같이 인스턴스 를 만들어야 합니다 String networkSSID = "test"; String networkPass = "pass"; WifiConfiguration conf = new WifiConfiguration(); conf.SSID = "\"" + networkSSID + "\""; // Please note the quotes. String should contain ssid in quotes 그런 다음 WEP 네트워크의 경우 다음을 수행해야합니다. conf.wepKeys[0] = "\"" + networkPass + "\""; conf.wepTxKeyIndex = 0; conf.allowedKeyManagement.set(WifiConfigurati.. 2020. 9. 23.
WinDows CMD 창에서 메인보드정보 확인하기 Windows에서 메인보드 정보(제조사)를 확인해야할 필요가 있다. 본체를 열지 않고도 알수 있는 방법이 있다. 아래와 같이 "wmic baseboard get product"명령어를 치면 모델명은 나온다 Microsoft Windows [Version 10.0.19041.450] (c) 2020 Microsoft Corporation. All rights reserved. C:\Users\Boeun_PC1>wmic baseboard get product Product B360M Pro4 C:\Users\Boeun_PC1> 참고로 얻을수 있는 정보 목록이다. C:\Users\Boeun_PC1>wmic baseboard get /? 속성 가져오기 작업입니다. 사용법: GET [] [] 참고: ::= | ,.. 2020. 9. 23.
안드로이드 스튜디오 gradle, plugin 관계 플러그인 버전필요한 Gradle 버전 1.0.0~1.1.3 2.2.1~2.3 1.2.0~1.3.1 2.2.1~2.9 1.5.0 2.2.1~2.13 2.0.0~2.1.2 2.10~2.13 2.1.3~2.2.3 2.14.1+ 2.3.0+ 3.3+ 3.0.0+ 4.1+ 3.1.0+ 4.4+ 3.2.0~3.2.1 4.6+ 3.3.0~3.3.2 4.10.1+ 3.4.0~3.4.1 5.1.1+ 3.5.0-3.5.3 5.4.1+ 3.6.0+ 5.6.4+ Android 스튜디오의 File > Project Structure > Project 메뉴에서 또는 gradle/wrapper/gradle-wrapper.properties 파일의 Gradle 배포 참조를 편집하여 Gradle 버전을 지정할 수 있습니다. 다음 예는.. 2020. 9. 23.