276 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
52
views
plotly express trendline cannot import name '_lazywhere' from 'scipy._lib._util'
I used to be able to run ols trendline in plotly express without issue, but now it returns this error:
ImportError: cannot import name '_lazywhere' from 'scipy._lib._util'`
This code works:
# Works
...
1
vote
1
answer
73
views
python plotly scatter ols trendline has a kink in it
I am using plotly express to model some data, and wanted to add a trendline = 'ols' to it.
when I do, I obtain a kink in the result
here is the code used:
d={'category': {63: 'test', 128: 'test', 192:...
2
votes
1
answer
129
views
Is there a reason why Jupyter Notebook will not display trendlines?
The problem I'm having is that my code will not display the trendline, but will give me a huge error message. When I remove the trendline, it displays the scatter plot still without the error message, ...
0
votes
0
answers
85
views
Trendline indicator with user-defined endpoints
So I'm using input.time to define the beginning and end of the time series (candles) the indicator is supposed to measure, and it works great! It works great until those two points are too far away ...
0
votes
1
answer
141
views
Moving data for points on ArcGIS
I am working on a project to show the traffic flow on the US-Mexico Border Entry Points. I have the latitude and longitude points and they are mapped on ArcGIS pro. However, I have the traffic flow ...
0
votes
2
answers
64
views
I'm trying to create aliases for axis measures in Tableau that are integers. Please advise
I'm wanting to create an axis for a set of Tableau views which measure a period spanning a year, and to avoid confusion, I want them to cover both years rather than just the integer representing a &...
0
votes
1
answer
283
views
Plotting exponential trend line
Exponential line that does not fit to along the triangles.
I'm trying to plot the exponential trend line in python. I used following code to plot the exponential trend line. Can anyone help me to ...
0
votes
1
answer
102
views
TypeError: Cannot read properties of undefined (reading 'hour') when replacing the sample data using MT5 Data
I was trying to use draggable trendline on top of CANDLESTICK series it's working okay until I replace the data from "https://demo-live-data.highcharts.com/aapl-ohlc.json" with a data from ...
0
votes
1
answer
106
views
Trying to add a loess smooth line to ggplot while retaining colored groupings
I'm hoping to create a scatterplot with a loess smooth line to capture the trend across the full time period. At the same time, the study population is pregnent, so I'm wanting to color each point ...
1
vote
2
answers
351
views
How to add trend line to exponential data in {ggplot2}?
I am trying to add a trend line to my {ggplot2} plot using ggplot2::geom_smooth(). I have tried multiple times to add the line but have not been able to figure it out. Here is my most recent attempt.
...
0
votes
1
answer
307
views
Tradingview - Plot higher timeframe trend line in lower time frame
Is it possible to plot trend line base on higher time frame in lower time frame?
For example:
Plot Week level trend line in Day level chart.
Trend line set from Week[2] high to Week1 high
And show on ...
1
vote
1
answer
46
views
Display trendline equations for facet wrapped date
I am working with a lot of data looking for variation in spider behavior. Here, multiple behaviors were recorded for multiple spiders in an experiment simulating rain. I have the amount of time each ...
0
votes
1
answer
206
views
How to code to force run an indicator when crossing a manual horizontal line
I have an indicator that works fine to send a webhook message on different conditions like 3 green high cross, 20 EMA cross etc and trades go well... however sometimes I find random opportunities on ...
0
votes
1
answer
110
views
How do I animate this graph so that it displays my trendline along with my points and line graph?
My code looks like this:
df3 <- nfl_data |>
group_by(team) |>
summarize(
year,
wins
)
df3 <- df3 |>
filter(team == 'Atlanta Falcons')
df3
graph4 <-...
1
vote
2
answers
910
views
How to add multiple trendlines to a scatter plot by groups
I'm trying to add multiple trendlines to a scatter plot in ggplot by age groups. I have 4 Age_range's 20_under, 21_24, 25_29, and 30_up so I'm looking to have 4 trendlines for each of these age groups
...