Questions tagged [cufflinks]
49 questions
1
vote
2 answers
cufflinks remove gaps in candlestick charts
I am using cufflinks for plotting candlestick charts in jupyter notebook.
How to remove gaps of non trading days in chart.
In plotly we can update layout ['xaxis']['type'] to 'category'.
How can we update the same for a QuantFig in…

Manish Singh
- 11
- 3
1
vote
1 answer
Adding timeseries to cufflinks quantfig plot
Quantfig does 90% of what I am looking for but I want to add a custom time series to the main candlestick plot. I am not as familiar with cufflinks as plotly but is there a similar function as fig.add_trace(go.Scatter()row=1, col=1) where a series…

Mark F
- 11
- 2
1
vote
0 answers
Python Plotly - Why do the 2 surface plots show different results?
I'm trying 2 ways to plot surface plot, but not sure why I got different results.
First way I did:
import pandas as pd
import numpy as np
import cufflinks as cf
cf.go_offline()
from plotly.offline import…

tom_lee
- 11
- 1
1
vote
0 answers
How to run both Plotly and Cufflinks in Python 3.7?
I'm getting this error.
ERROR: cufflinks 0.17.3 has requirement plotly>=4.1.1, but you'll have plotly 3.10.0 which is incompatible.
Before I got this error, I got this error.
ImportError:
The plotly.plotly module is deprecated,
please install the…

ASH
- 20,759
- 19
- 87
- 200
1
vote
0 answers
Not able to load the proper 3D image using pyplot and cufflinks module in python
I am currently doing a data science and machine learning course where I attended a lecture on plotly and cufflinks. I am currently using pycharm and trying to plot a 3 dimensional image called 'Surface Plot'. When I run the code, I am getting the…

Rutunjay
- 11
- 1
1
vote
0 answers
How to resolve import cufflinks error "The plotly.plotly module is deprecated"?
On importing cufflinks I am getting error in Jupyter Notebook:
import cufflinks as cf
error:
The plotly.plotly module is deprecated,
please install the chart-studio package and use the
chart_studio.plotly module instead.
What to do? Is there…

Raj Verma
- 11
- 1
1
vote
0 answers
Is there a way to normalize the scales of axes in subplots in cufflinks library python?
I have used cufflinks to plot a few subplots, their scale ranges are different. I want same scales so I can compare the subplots. Is there a way to customize the axes of each subplot in cufflinks?
This link shows the picture of the subplots, the…

userlogfern
- 55
- 6
1
vote
2 answers
How can I install Cufflinks in Pycharm?
I go to Settings>Project: Python Projects>Project Interpreter and click in Install but Cufflinks is not listed. (I use Anaconda Interpreter)
I already used
pip install cufflinks
conda install -c conda-forge cufflinks-py
conda install -c…

Jancer Lima
- 744
- 2
- 10
- 19
0
votes
0 answers
Cuffcompare to TransDecoder
I'm trying to use TransDecoder to identify transcripts with high coding potential. In the previous step, I obtained several files with extensions .tmap, .tracking, .stats, .combined.gtf, and .refmap from cuffcompare results. I used the combined.gtf…

BScpj
- 15
- 3
0
votes
0 answers
How to change the range of values on the y axis in the python cufflinks library?
Code:
import cufflinks as cf
cf.set_config_file(offline=True)
qf=cf.QuantFig(table,title='BNBBTC',legend='top',name='GS', color='green')
qf.add_ema(periods=60, name='EMA', color='yellow')
qf.add_volume(title='Volume',…
0
votes
0 answers
Draw a side-by-side pie chart using plotly and cufflinks
Try drawing a side-by-side pie chart with the following code, always saying I need to define xaxis. How do I solve this?
CODE1:
import cufflinks as cf
cf.go_offline()
df=cf.datagen.bubble(10,50,mode='stocks')
df['categories1'] =…

Stanley Ewing
- 15
- 4
0
votes
0 answers
Pandas cufflink .iplot ,title is not coming
I am using cufflink to plot a pivot table. The issue I am facing is that the title is not coming in the plot. Please see my code below. Please let me know where I went wrong
searchfor = ['40', '85','100','105']
# >>>…

Hari
- 333
- 6
- 18
0
votes
1 answer
Cufflink plot changing the axis scale
I am plotting a pivot chart using cufflinks.Code is given below.
df_thd_funct_dbspl = pd.read_csv("THD_M2.txt",delim_whitespace=True)
check_for_nan = df_thd_funct_dbspl.isnull().values.any()
print…

Hari
- 333
- 6
- 18
0
votes
1 answer
cufflinks `df.iplot()` doesn't work with vscode/jupyter
I'm trying to use cufflinks to plot a dataframe, and df.iplot() is not working––it does not return after 10s. I'm running from vscode + jupyter extension. plotly works fine. Any suggestions on what I am doing wrong?
import cufflinks as…

michael
- 4,377
- 8
- 47
- 73
0
votes
1 answer
Cufflinks Pivot chart axis name is not coming
I am using cufflinks to plot a pivot chart.My code is given below.
CHIP_CURRENT_PVT_EX = pd.pivot_table(df_cur_funct_mode1,index = 'Temp(deg)',columns = 'Device_ID',values = 'Chip_Cur(uAmp)')
CHIP_CURRENT_PVT_EX['SPEC_TYP']=…

Hari
- 333
- 6
- 18