question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

df.text.str.upper() never completes

See original GitHub issue

The final statement below never returns to the python repl prompt.

Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 23:11:46) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import vaex
>>> text = ['Something', 'very pretty', 'is coming', 'our', 'way.']
>>> df = vaex.from_arrays(text=text)
>>> df
  #  text
  0  Something
  1  very pretty
  2  is coming
  3  our
  4  way.
>>> df.text.str.upper()

I am using WinPython 3.8.1 on Windows 10.

Issue Analytics

  • State:open
  • Created 3 years ago
  • Comments:12 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
maartenbreddelscommented, Jun 4, 2020

Great to hear, I think we can then conclude vaex on Python3.8+Windows is broken

0reactions
Code4SAFrankiecommented, Oct 5, 2021

Requirement already satisfied: vaex-core in e:\wpy-3810\python-3.8.1.amd64\lib\site-packages (4.5.1) Requirement already satisfied: vaex-viz in e:\wpy-3810\python-3.8.1.amd64\lib\site-packages (0.5.0) Requirement already satisfied: vaex-jupyter in e:\wpy-3810\python-3.8.1.amd64\lib\site-packages (0.6.0) Requirement already satisfied: vaex-server in e:\wpy-3810\python-3.8.1.amd64\lib\site-packages (0.6.1) Requirement already satisfied: vaex-hdf5 in e:\wpy-3810\python-3.8.1.amd64\lib\site-packages (0.10.0) Requirement already satisfied: vaex-astro in e:\wpy-3810\python-3.8.1.amd64\lib\site-packages (0.9.0) Requirement already satisfied: vaex-ml in e:\wpy-3810\python-3.8.1.amd64\lib\site-packages (0.14.0)

Read more comments on GitHub >

github_iconTop Results From Across the Web

How can I make pandas dataframe column headers all ...
You can do it like this: data.columns = map(str.lower, data.columns). or data.columns = [x.lower() for x in data.columns]. example: >>> data = pd....
Read more >
How to Change Strings to Uppercase in Pandas DataFrame
Step 2: Change the strings to uppercase in Pandas DataFrame. Next, change the strings to uppercase using this template: df['column name'].str.
Read more >
How to convert a string column to title case, lower case, or ...
Step 4: UPPER. Now let's practice our new skill by converting the lowercase 'Name' column to uppercase: df['Name'] = df['Name'].str.upper(). Easy-peasy.
Read more >
Python | Pandas Series.str.lower(), upper() and title()
Pandas is a library for Data analysis which provides separate methods to convert all values in a series to respective text cases. Since,...
Read more >
pandas.Series.str.upper — pandas 1.5.2 documentation
Convert strings in the Series/Index to uppercase. Equivalent to str.upper() . Returns. Series or Index of object. See also.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found