R Language Learning Notes

R Language Learning setwd("D:\R Language Learning")#Change working path write.table(y, "sample.csv", sep=",")#Save the file > x=scan()#Manual Input 1: 1 2: 2 3: 3 4: 5 5: Read 4 items > x [1] 1 2 3 5 x=scan("a.txt") as.array() as.character() as.data.frame() as. ...

Added by mynameisbob on Fri, 24 Jan 2020 05:27:30 +0200

USACO4.3.2--Violent Solution to Prime Matrix

USACO4.3.2--Violent Solution to Prime Matrix Topic link: Here; After reading the questions, it is not difficult to find that this is a completed number of questions. First, say the filling method. Most people must think of one line at the beginning, one column at the beginning, and then judge as a w ...

Added by dingus on Tue, 21 Jan 2020 05:54:29 +0200

Disruptor Concurrency Framework, Core Component RingBuffer

Introduction to 1.1 Disruptor Concurrency Framework Martin Fowler wrote an article on his website about the LMAX architecture, in which he described LMAX as a new retail financial trading platform that can generate a large number of transactions with very low latency.This system is built on the JVM pl ...

Added by rwachowiak on Mon, 20 Jan 2020 03:32:15 +0200

Judgment and circulation of JS&jQuery interactive web front end development

Article directory 4 judgment and circulation 4.1 judgement Judge Judgment conditions and conditional statements Comparison operators: judging conditions Logical operators if statement switch Statements Compare if else and switch Casts and weak types 4.2 cycle Three types: for, while, do while Imp ...

Added by LuAn on Sun, 19 Jan 2020 16:33:09 +0200

Extended configuration of OSPF

Extended configuration of OSPF 1. certification (1) Interface certification 1) Interface plaintext authentication r11(config)#interface s0/1 r11(config-if)#ip ospf authentication #Open the plaintext authentication requirements of the interface first. After the interface is opened, the authenticatio ...

Added by mammy on Sun, 19 Jan 2020 14:13:15 +0200

Getting started with Tablestore - GetRange query details

Query interface As a big data storage service, table storage provides a variety of data output interfaces, mainly including: single row read (GetRow), batch GetRow, range read (GetRange), multiple index Search (Search) and channel service data subscription (Tunnel Service). This article will describe the function, use and limitation of range r ...

Added by bazza84 on Sun, 19 Jan 2020 09:57:35 +0200

C Language Learning: Strings, Structures, Commons

Character string In C, strings are actually one-dimensional character arrays terminated with the null character'\0'.Therefore, a null-terminated string contains the characters that make up the string.Declare and initialize create a string: char charArrayName[capacity] = {charElement1,charElement2.. ...

Added by fluvly on Sat, 18 Jan 2020 04:25:49 +0200

Detailed java static and dynamic proxies

Catalog 1. Static Agent 2. Dynamic Agent (1) JDK dynamic proxy (2) Cglib Dynamic Agent (3) Differences between jdk dynamic proxy and cglib dynamic proxy Proxy is a common design pattern for providing a proxy for other objects to control access to an object.The proxy class is responsible for pr ...

Added by xardas on Sat, 18 Jan 2020 03:49:06 +0200

Attention to developing a map class system (openlayers.js) using vue.

Use vue to develop the attention of the map class system. 1. Objects that should be created with maps use less vue data and computed attributes to store data or vuex. Why should we pay attention to this problem? Answer: This is to understand the implementation principle of vue. Principle reference; When you pass a normal JavaScript object int ...

Added by rockofaith on Fri, 17 Jan 2020 18:43:16 +0200

Please refer to java8 localdatetime and other time user manuals (all), mark them first and then read them

Preface Java 8's time and date api provides us with great convenience. How to be familiar with the use of time api is also a very important knowledge point for learning java 8. Let's learn together. This article has a lot of code, which can be used as a tool. When you need to use it, please refer to it ...

Added by dc277 on Fri, 17 Jan 2020 13:44:36 +0200