Publish to my blog (weekly)

시계열 데이터베이스 InfluxDB 시작하기 column은 key라고 하는데, 여기서 tag와 field 개념을 구분해야 합니다. tag는 말 그대로 태그입니다. tag key에는 building , room 같은 것들이 있을 수 있습니다. field key는 key 중에서 tag key를 제외한 나머지 key인데, 주로 측정된 값 데이터가 들어갑니다. 즉 여기서는 temperature , humidity 같은 것들이 있을 수 있습니다. SQL로 비유하자면 tag 키는 WHERE 절에서 주로 사용되는 인덱스 키로 볼 수 있습니다. Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

The 10 Most Common Mistakes That Python Developers Make | Toptal The proper way to catch multiple exceptions in an except statement is to specify the first parameter as a tuple containing all exceptions to be caught. Also, for maximum portability, use the as keyword, since that syntax is supported by both Python 2 and Python 3: Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

이미지
You searched for 9781800206809a - Free PDF Download   0   <!--/.post-thumbnail-->       Hardware & DIY / Programming / Software Development / Video Tutorials     February 17, 2020       by   WOW! eBook   · Published February 17, 2020     <!--/.post-meta-->    GUI Automation Using Pyt Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

Difference Between a Batch and an Epoch in a Neural Network The batch size is a hyperparameter that defines the number of samples to work through before updating the internal model parameters. When the batch is the size of one sample, the learning algorithm is called stochastic gradient descent When the batch size is more than one sample and less than the size of the training dataset, the learning algorithm is called mini-batch gradient descent. Batch Gradient Descent . Batch Size = Size of Training Set   Stochastic Gradient Descent . Batch Size = 1   Mini-Batch Gradient Descent . 1 < Batch Size < Size of Training Set ...

Publish to my blog (weekly)

Chat - Samples - Ktor suspend fun List <WebSocketSession> . send (frame: Frame ) { 확장함수 Extensions - Kotlin Programming Language Kotlin provides the ability to extend a class with new functionality without having to inherit from the class or use design patterns such as Decorator Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

SikuliX - general aspects of scripting — SikuliX 1.1+ documentation Saved scripts (.sikuli) and exported scripts (.skl and .jar) can be run from commandline ( see ) or from within other scripts ( see ). A candidate to be used with SikuliX and JavaScript scripting in the future will be the GraalVM package. It can surely be used with SikuliX (sikulixapi.jar) already now, but probably will have special support in SikuliX 1.1.5 beginning towards end of 2019. People who try already now with SikuliX 1.1.4 are welcome to give feedback about their experiences. now you can write JavaScript code according to the specifications of the Java bundled JavaScript interpreter (Nashorn since Java 1.7) . ...

Publish to my blog (weekly)

4.3. Aggregating functions - Chapter 4. Functions percentileCont(n.age, 0.4) PERCENTILE_CONT는 순서가 지정된 값 사이의 선형 보간을 계산합니다. 이 함수는 집계 그룹에서 백분위 값(P)과 NULL을 제외한 행들의 번호(N)를 사용하여 정렬 명세에 따라 행의 순서를 지정한 후 행 번호를 계산합니다. 행 번호(RN)를 계산하는 공식은 RN = (1+ (P*(N-1))입니다. 이 집계 함수의 최종 결과는 행 번호가 CRN = CEILING(RN)과 FRN = FLOOR(RN)인 행의 값 사이 선형 보간을 통해 계산됩니다.최종 결과는 다음과 같습니다.(CRN = FRN = RN)일 때 결과는 (value of expression from row at RN)입니다.그렇지 않다면 다음 결과가 표시됩니다.(CRN - RN) * (value of expression for row at FRN) + (RN - FRN) * (value of expression for row at CRN).> var DATA = [13, 33, 44]> var N = 3> var P = 0.4> var RN = 1 + (P * (N - 1))> RN1.8> var CRN = Math.ceil(RN)> CRN2> var FRN = Math.floor(RN)> FRN1> var PC = (CRN - RN) * DATA[FRN - 1] + (RN - FRN) * DATA[CRN - 1]> PC29 ...