我需要用句点替换数据框列中的所有空格。即:
原创df:
symbol
0 AEC
1 BRK A
2 BRK B
3 CTRX
4 FCE A
期望的结果df:
symbol
0 AEC
1 BRK.A
2 BRK.B
3 CTRX
4 FCE.A
有没有办法在不需要遍历每一行的情况下执行此操作,一次更换一个空格?如果有一种矢量化的方法,我不希望一次迭代一行。
答案 0 :(得分:5)
使用vectorised str.replace
:
<script src="//use.typekit.net/uwk8rac.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="stage">
<canvas id="canvas" style="width:100%; height:100%;"></canvas>
<div class="centered">
<img src="img/makecodeplay-logo.png" alt="MAKECODEPLAY" height="70" width="771"></div>
<div class="centered" style="margin-top:50px;">
<p>SITE COMING SOON</p></div>
<div class="centered-bottom">
<footer>
<small>© Copyright 2015, MAKECODEPLAY</small>
</footer>
</div>
</div>