Creating 4 clusters with k-means
model.fit(features_rsi_adx)
 
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
Cell In[44], line 11
      8 model = KMeans(n_clusters=4, random_state=40)
     10 # Creating 4 clusters with k-means
---> 11 model.fit(features_rsi_adx)
     13 model
It works on your system, your codes do not work on my computer.
AttributeError: 'NoneType' object has no attribute 'split'