일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xPlatform
- MSSQL
- hadoop
- SQL
- Python
- Spring
- Kotlin
- JavaScript
- table
- 공정능력
- Sqoop
- tomcat
- window
- es6
- GIT
- vaadin
- mapreduce
- SSL
- mybatis
- Eclipse
- react
- SPC
- NPM
- R
- 보조정렬
- Android
- Express
- Java
- IntelliJ
- plugin
- Today
- Total
목록전체 글 (649)
DBILITY
R plot을 사용해봤거나 여타 차트를 많이 다룬 경우 이해가 쉽다. 데이터는 Dictionary로 plotting 할 데이터를 선언하고, dataframe으로 변환(생성)해서 사용한다. 공식 사이트 매뉴얼을 참고해서 테스트해보면 된다. matplot color code 참고 ( https://matplotlib.org/stable/gallery/color/named_colors.html ) 다른 차트들은 공식 사이트 Examples를 참고 https://matplotlib.org/stable/gallery/index.html import matplotlib.pyplot as plt from pandas import DataFrame # data dictionary raw_data = { 'observa..
가끔 이런 것도 찾기 어려울때가 있다. Oralce Version jdk version ojdbc file Oracle 12C jdk 1.6 이상 ojdbc6.jar jdk 1.7 이상 ojdbc7.jar Oracle 11G jdk 1.6 이상 ojdbc6.jar Oralce 10G jdk 1.5 이상(1.4 6년전 이래 본적 없음) ojdbc14.jar
다른 언어를 사용하더라도 정규식은 언제나 헷갈리는 부분이다. 자주 사용하지 않으니 어쩌면 당연한 것일까? w3school의 python tutorial을 보니 findall 문자 그대로 일치하는 모든 list를 반환, 없으면 맹탕~list 반환 search 문자열내에 일치하는 것이 있으면 해당 object 반환, 반대로 None이 반환되면 없다는 얘기. split 제공된 문자를 기준으로 잘라서 list로 반환, 없다면 문자열을 list에 넣어 그대로 반환 sub 일치하는 모든 문자를 교체한다. 다른 언어의 replace와 같다. 다음은 1년에 한번 사용할까 말까 하고 정규식을 보자마자 정신이 혼미해질 때 눈으로 마시는 박카스A정도. print(re.search('ab','abcd')) print(re.s..
smtplib 사용 별도로 sendmail server를 구축하고, dns mx record 등록하는 등 작업이 필요하겠지만, 언제 다하겠나 생각도 안남 회사나 gmail smtp를 사용해도 된다. gmail은 다음과 같은 SMTPAuthenticationError가 발생한다. smtplib.SMTPAuthenticationError: (535, b'5.7.8 Username and Password not accepted. Learn more at\n5.7.8 https://support.google.com/mail/?p=BadCredentials k9sm4572812pfu.109 - gsmtp') 예전에 javamail로는 PasswordAuthentication을 처리하면 됐던거 같던데 지금은 모르겠..
pip install pillow 또는 나는 intellij를 사용하니 Python Packages Window에서 설치했음. 사용법은 아래 공식사이트를 참고하자. Pillow Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. Pillow for enterprise is available via the Tidelift Subscription... pillow.readthedocs.io import os import shutil from PIL import Image target_directory = r'.\images'..