Merge pull request 'docs(estimator): DKP corridor described as P10/P90 not min/max in schema+TS (#1520 follow-up)' (#1708) from fix/dkp-corridor-doc-p10p90-1695 into main
Some checks failed
Deploy / changes (push) Waiting to run
Deploy / build-backend (push) Blocked by required conditions
Deploy / build-worker (push) Blocked by required conditions
Deploy / build-frontend (push) Blocked by required conditions
Deploy / deploy (push) Blocked by required conditions
Deploy Trade-In / changes (push) Successful in 7s
Deploy Trade-In / test (push) Has been cancelled
Deploy Trade-In / build-backend (push) Has been cancelled
Deploy Trade-In / build-frontend (push) Has been cancelled
Deploy Trade-In / build-browser (push) Has been cancelled
Deploy Trade-In / deploy (push) Has been cancelled
Some checks failed
Deploy / changes (push) Waiting to run
Deploy / build-backend (push) Blocked by required conditions
Deploy / build-worker (push) Blocked by required conditions
Deploy / build-frontend (push) Blocked by required conditions
Deploy / deploy (push) Blocked by required conditions
Deploy Trade-In / changes (push) Successful in 7s
Deploy Trade-In / test (push) Has been cancelled
Deploy Trade-In / build-backend (push) Has been cancelled
Deploy Trade-In / build-frontend (push) Has been cancelled
Deploy Trade-In / build-browser (push) Has been cancelled
Deploy Trade-In / deploy (push) Has been cancelled
This commit is contained in:
commit
16990af11c
2 changed files with 4 additions and 4 deletions
|
|
@ -106,9 +106,9 @@ class DkpCorridor(BaseModel):
|
|||
"""
|
||||
|
||||
count: int # число ДКП-сделок в выборке
|
||||
low_ppm2: int # min ₽/м² по сделкам (P10-ish — берём минимум)
|
||||
low_ppm2: int # P10 ₽/м² по сделкам (робастный коридор)
|
||||
median_ppm2: int # медиана ₽/м²
|
||||
high_ppm2: int # max ₽/м²
|
||||
high_ppm2: int # P90 ₽/м² по сделкам (робастный коридор)
|
||||
period_months: int # окно поиска сделок
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -121,9 +121,9 @@ export interface AvitoImvSummary {
|
|||
// нет сделок. count..period_months — required (бэкенд не отдаёт частичный объект).
|
||||
export interface DkpCorridor {
|
||||
count: number; // число ДКП-сделок в выборке
|
||||
low_ppm2: number; // min ₽/м² по сделкам
|
||||
low_ppm2: number; // P10 ₽/м² по сделкам (робастный коридор)
|
||||
median_ppm2: number; // медиана ₽/м²
|
||||
high_ppm2: number; // max ₽/м²
|
||||
high_ppm2: number; // P90 ₽/м² по сделкам (робастный коридор)
|
||||
period_months: number; // окно поиска сделок
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue