码迷,mamicode.com
首页 >  
搜索关键字:size    ( 49122个结果
[20210428]改进pr.sql脚本.txt
[20210428]改进pr.sql脚本.txt--//tanel poder提供一个脚本pr.sql,用来实现显示信息的纵向显示。例子:SCOTT@book> select * from dept where deptno=10 2 @ prPivoting output using Tom Ky ...
分类:数据库   时间:2021-04-29 11:47:01    阅读次数:0
Pandas数据预处理的常用函数
引入Pandas,用于有关数据处理和分析的环节。 一、读取数据文件 1 .读取excel数据文件 1.1加载Excel表,使用skiprows=1跳过首行【对于一个excel文件,首行一般为字段的定义(标题行),第二行才为数据】 并指定加载的列,注意数据文件的编码,默认utf-8,常用还有gb231 ...
分类:其他好文   时间:2021-04-29 11:36:23    阅读次数:0
R语言中for、while、if else、switch语句
1、for语句 for (i in 1:5) { print("hello world!") } 2、for语句 sum = 0 for (i in 1:100){ sum = sum + i } print(sum) 3、for语句 sum = 0 for (i in 1:100) { if (i ...
分类:编程语言   时间:2021-04-27 15:30:33    阅读次数:0
jupyter notebook 更换主题
通过命令行窗口或 Anaconda Prompt 窗口 1、安装 Jupyter 主题 pip install jupyterthemes 2、更新 Jupyter 主题 (可选) pip install --upgrade jupyterthemes 3、查看可用的 Jupyter 主题 jt - ...
分类:其他好文   时间:2021-04-27 15:23:51    阅读次数:0
c语言 4-20为九九乘法表增加横纵标题
c语言 4-20 为九九乘法表增加横纵标题。 1、for语句二层循环 #include <stdio.h> int main(void) { int i, j; printf(" |"); for (i = 1; i <= 9; i++) { printf("%3d", i); } putchar( ...
分类:编程语言   时间:2021-04-27 15:05:59    阅读次数:0
c++ (文件读写操作)
文件读写操作「c++」 #include <fstream> void test01() { //ofstream ofs("./test.txt",ios::out | ios::trunc); //后期指定打开方式 ofstream ofs; ofs.open("./test.txt",ios: ...
分类:编程语言   时间:2021-04-27 15:05:25    阅读次数:0
仿京东静态网站制作之猜你喜欢(小竖线制作)
#猜你喜欢模块制作 ##主要知识点:结构伪类选择器和伪元素选择器&常规页面布局 ###HTML结构 <!-- 猜你喜欢模块 --> <div class="like"> <div class="hd"> <div class="left">猜你喜欢</div> <div class="right"> ...
分类:Web程序   时间:2021-04-27 14:55:10    阅读次数:0
创建tensor
创建tensor的方式有很多 即可接受list并根据list创建,又可指定形状创建,也可传入其他tensor ...
分类:其他好文   时间:2021-04-27 14:11:11    阅读次数:0
Insertion Sort and Merge Sort
Insertion Sort(插入排序) 思路:for 循环遍历数组中的每一个数 用while将每次遍历到的数于左侧的数进行对比,将小的排到左边 void InsertionSort(int*A, int n){ int key,i=0,p; for(p=0;p<n;p++){ key=A[p]; ...
分类:其他好文   时间:2021-04-26 13:48:01    阅读次数:0
win10 定时重启某个程序
1. bat程序: restartProxify.bat @echo off taskkill /f /im Proxifier.exe cd / cd "C:\Program Files (x86)\Proxifier" Proxifier.exe echo 成功重启 Proxifier.exe ...
分类:Windows程序   时间:2021-04-26 13:44:55    阅读次数:0
49122条   上一页 1 ... 25 26 27 28 29 ... 4913 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!