* Returns the name of the day, of the week, in local time * @example * ``` * import { Series } from "danfojs-node" * const data = [ * "2019-01-01", * "2019-02-01", * "2021-03-01", * "2020-04-01", * ] * const df = new Series(data) * const dayOfWe
()
| 146 | * ``` |
| 147 | */ |
| 148 | dayOfWeekName() { |
| 149 | const newValues = this.$dateObjectArray.map(date => WEEK_NAME[date.getDay()]) |
| 150 | return new Series(newValues); |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Returns the day of the month, in local time |
no test coverage detected