df.text.str.upper() never completes
See original GitHub issueThe 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:
- Created 3 years ago
- Comments:12 (4 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Great to hear, I think we can then conclude vaex on Python3.8+Windows is broken
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)