1 | import { TickMethod } from '../types';
|
2 | /**
|
3 | * 创建分割点
|
4 | * @param min 左区间
|
5 | * @param max 右区间
|
6 | * @param n 分割点个数
|
7 | * @returns 计算后的 ticks
|
8 | * @see R pretty https://svn.r-project.org/R/trunk/src/appl/pretty.c
|
9 | * @see R pretty https://www.rdocumentation.org/packages/base/versions/3.5.2/topics/pretty
|
10 | */
|
11 | export declare const rPretty: TickMethod;
|