Technique技术

Home/Technique技术

Install Mongo DB Server in Ubuntu 22.04 LTS

By |2023-04-02T22:51:43-04:00April 2nd, 2023|Categories: Technique技术|Tags: , |

I just tried and successfully installed MongoDB Tutorial to Ubuntu22.04 system. Please find my short tutorial below. Source 1 Use the following link to go to a great tutorial from end to end (in between there is a short fix that needs another resource later) REMEMBER to include 'sudo' command when necessary https://wiki.crowncloud.net/How_To_Install_Duf_On_Ubuntu_22_04?How_to_Install_Latest_MongoDB_on_Ubuntu_22_04 Source 2 Code [...]

SQL Practical Notes

By |2021-01-20T19:23:23-05:00January 20th, 2021|Categories: Technique技术|Tags: , , |

MySQL 'group by' together with 'partition by' Online MySQL Database create table Test(cc varchar(25), item varchar(100), num integer); insert into Test(cc, item, num) values('ca', '8.1.4', 11); insert into Test(cc, item, num) values('cn', '8.1.1', 1); insert into Test(cc, item, num) values('cn', '8.1.4', 15); insert into Test(cc, item, num) values('cn', '8.1.3', 5); insert into Test(cc, item, [...]

R Multiplots in ggplot2

By |2018-08-31T12:55:49-04:00August 31st, 2018|Categories: Note笔记, Technique技术|Tags: , , , |

#Multiplot in ggplot2 install.packages("gridExtra") library("gridExtra") install.packages("cowplot") library("cowplot") df <- ToothGrowth # Convert the variable dose from a numeric to a factor variable df$dose <- as.factor(df$dose) head(df) #----Cowplot---- # The cowplot package is an extension to ggplot2 #and it can be used to provide a publication-ready plots. library(cowplot) # Default plot bp <- ggplot(df, aes(x=dose, y=len, color=dose)) [...]

This Is A Custom Widget

This Sliding Bar can be switched on or off in theme options, and can take any widget you throw at it or even fill it with your custom HTML Code. Its perfect for grabbing the attention of your viewers. Choose between 1, 2, 3 or 4 columns, set the background color, widget divider color, activate transparency, a top border or fully disable it on desktop and mobile.

This Is A Custom Widget

This Sliding Bar can be switched on or off in theme options, and can take any widget you throw at it or even fill it with your custom HTML Code. Its perfect for grabbing the attention of your viewers. Choose between 1, 2, 3 or 4 columns, set the background color, widget divider color, activate transparency, a top border or fully disable it on desktop and mobile.
Go to Top