본문 바로가기

반응형

개발자

json을 엑셀,csv 로 변환 사이트 추천 JSON to CSV Converter http://convertcsv.com/json-to-csv.htm JSON To CSV Converter convertcsv.com 사실 json to csv에만 국한된것은 아니고요. 왼쪽 메뉴를 보면 굉장히 많은 것들의 변환을 지원함을 알 수 있습니다. 이것 저것 많이 지원.. json to csv의 사용법은 매우 간단합니다. 우선 데이터를 입력합니다. 입력 형식은 text 뿐만 아니라 로컬에 저장된 파일이나 url 일 수도 있습니다. text의 경우 입력 후 아래의 "Format JSON"버튼을 한번 눌러주는것을 추천합니다. 그런데 안타깝게도 잘못된 json 입력 후 저 버튼을 눌러도 별 다른 에러메시지를 주진 않습니다. 잘못된 json의 경우 변환을 시도할 .. 더보기
Polynomial Fitting in C program Okay, so here I am sharing a code for fitting a polynomial to a given set of data-points using the Least Squares Approximation Method(Wikipedia). Let’s say we have data-point pairs and we are trying to fit them using a polynomial of degree . If N=n+1 then the polynomial will pass exactly through each point and it will correspond to the interpolating polynomial that I wrote about earlier. Let’s s.. 더보기
CSV 파일 Import 하기 [DBeaver] [퍼옴] Importing data from CSV format You can import data from CSV file(s) directly into your database table(s). Select a table(s) to which you want to import data. In the context menu choose "Import Data": Choose import format (CSV): Select input CSV file for each table you want to import and you can change the Importer settings (format specific) at this step: Set CSV-to-table mappings. You need .. 더보기
C++ Lambda 사용 이유 및 정리 C++에는 lambda라는 문법이 존제합니다. 원래 이 lambda는 boost라는 라이브러리에서 제공하는 함수였지만 지금은 modern c++로 넘어가면서 이 기능을 기본적으로 지원하게 되었습니다. 출처 : https://modoocode.com/196 ● [] 캡쳐 블록 (사용시 외부 변수를 캡쳐해 람다 몸통에서 사용 가능) ● () 전달 인자 ● -> 반환 타입 ● {} 함수 몸통 (※Lambda는 기본적으로 캡쳐 블록'[]', 전달인자 '()', return type을 생략할 수 있습니다.) 우선!! 왜 사용하는지 부터 설명해 보겠습니다. 람다는 함수 객채와 함수 포인터의 장점만을 가지고 있습니다. 1. 함수 객채와는 다르게 class를 선언할 필요가 없다. (즉, 코드의 길이가 줄어든다.) 2... 더보기