datalab_shopping_by_device
Analyze shopping trends on Naver by device type (PC or mobile) to identify user behavior patterns and optimize marketing strategies over specific time periods.
Instructions
Perform a trend analysis on Naver Shopping by device. (네이버 쇼핑 기기별 트렌드 분석)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category code | |
device | Yes | Device type | |
endDate | Yes | End date (yyyy-mm-dd) | |
startDate | Yes | Start date (yyyy-mm-dd) | |
timeUnit | Yes | Time unit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "Category code",
"type": "string"
},
"device": {
"description": "Device type",
"enum": [
"pc",
"mo"
],
"type": "string"
},
"endDate": {
"description": "End date (yyyy-mm-dd)",
"type": "string"
},
"startDate": {
"description": "Start date (yyyy-mm-dd)",
"type": "string"
},
"timeUnit": {
"description": "Time unit",
"enum": [
"date",
"week",
"month"
],
"type": "string"
}
},
"required": [
"startDate",
"endDate",
"timeUnit",
"category",
"device"
],
"type": "object"
}